class RSpec::Core::Runner

def run(err, out)

Parameters:
  • out (IO) -- output stream
  • err (IO) -- error stream
def run(err, out)
  setup(err, out)
  return @configuration.reporter.exit_early(exit_code) if RSpec.world.wants_to_quit
  run_specs(@world.ordered_example_groups).tap do
    persist_example_statuses
  end
end