Registers a block to be executed after each
example. This method appends block to existing after blocks.
# File lib/spec/example/example_group_methods.rb, line 207
def append_after(*args, &block)
scope, options = scope_and_options(*args)
parts = after_parts_from_scope(scope)
parts << block
end