class RSpec::Core::Configuration

def with_suite_hooks

Other tags:
    Private: -
def with_suite_hooks
  return yield if dry_run?
  begin
    run_suite_hooks("a `before(:suite)` hook", @before_suite_hooks)
    yield
  ensure
    run_suite_hooks("an `after(:suite)` hook", @after_suite_hooks)
  end
end