module RSpec::Core::Hooks

def append_after(*args, &block)

See #after for scoping semantics.

scope (`:each`, `:all`, or `:suite`).
Adds `block` to the back of the list of `after` blocks in the same
def append_after(*args, &block)
  register_hook :append, :after, *args, &block
end