Method: RSpec::Core::Hooks#append_after

Defined in:
lib/rspec/core/hooks.rb

#append_after(*args, &block) ⇒ void

Adds block to the back of the list of after blocks in the same scope (:example, :context, or :suite).

See #after for scoping semantics.



287
288
289
# File 'lib/rspec/core/hooks.rb', line 287

def append_after(*args, &block)
  hooks.register :append, :after, *args, &block
end