method
run_after_all

run_after_all(success, instance_variables)
private
Hide source
# 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