append_after(*args, &block)
public
Registers a block to be executed after each
example. This method appends block to existing after blocks.
# File lib/spec/example/before_and_after_hooks.rb, line 36
def append_after(*args, &block)
after_parts(*args) << block
end