class RSpec::Core::Hooks::AfterAllHook

def display_name

def display_name
  "after(:all) hook"
end

def run(example)

def run(example)
  example.instance_exec(example, &block)
rescue Exception => e
  # TODO: come up with a better solution for this.
  RSpec.configuration.reporter.message <<-EOS
 occurred in an after(:all) hook.
ass}: #{e.message}
ed at #{e.backtrace.first}
end