module RSpec::Core::Hooks
def append_after(*args, &block)
scope (`:each`, `:all`, or `:suite`).
Adds `block` to the back of the list of `after` blocks in the same
def append_after(*args, &block) scope, options = scope_and_options_from(*args) hooks[:after][scope] << block.extend(AfterHookExtension).with(options) end