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