module RSpec::Core::Hooks

def prepend_before(*args, &block)

See #before for scoping semantics.

scope (`:each`, `:all`, or `:suite`).
Adds `block` to the front of the list of `before` blocks in the same
def prepend_before(*args, &block)
  register_hook :prepend, :before, *args, &block
end