class RSpec::Core::Configuration

Public Instance Methods

with_suite_hooks() { || ... } click to toggle source
# File lib/test_queue/runner/rspec3.rb, line 5
def with_suite_hooks
  begin
    hook_context = SuiteHookContext.new
    hooks.run(:before, :suite, hook_context)
    yield
  ensure
    hooks.run(:after, :suite, hook_context)
  end
end