method
run_after_all
1.1.4 -
Show latest stable
- Class:
Spec::Example::ExampleGroupMethods
run_after_all(success, instance_variables)private
No documentation available.
# File lib/spec/example/example_group_methods.rb, line 309
def run_after_all(success, instance_variables)
after_all = new("after(:all)")
after_all.set_instance_variables_from_hash(instance_variables)
execute_in_class_hierarchy(:superclass_first) do |example_group|
after_all.eval_each_fail_slow(example_group.after_all_parts)
end
return success
rescue Exception => e
reporter.failure(after_all, e)
return false
end