Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (1.1.4) is shown here.
prepend_after(*args, &block)
public
Registers a block to be executed after each
example. This method prepends block to existing after blocks.
# File lib/spec/example/example_group_methods.rb, line 198
def prepend_after(*args, &block)
scope, options = scope_and_options(*args)
parts = after_parts_from_scope(scope)
parts.unshift(block)
end