method
run_after_all
run_after_all(success, instance_variables, run_options)
private
Hide source
# File lib/spec/example/example_group_methods.rb, line 223 def run_after_all(success, instance_variables, run_options) return success if example_group_hierarchy.after_all_parts.empty? after_all = new("after(:all)") after_all.set_instance_variables_from_hash(instance_variables) example_group_hierarchy.run_after_all(after_all) return success rescue Exception => e run_options.reporter.example_failed(ExampleDescription.new("after(:all)"), e) return false end