module RSpec::Core::Hooks

def append_after(*args, &block)

See {#after} for scoping semantics.

scope (`:example`, `:context`, or `:suite`).
Adds `block` to the back of the list of `after` blocks in the same
def append_after(*args, &block)
  hooks.register :append, :after, *args, &block
end