module RSpecExt

Public Instance Methods

handle_interrupt() click to toggle source
# File lib/turbo_tests/json_rows_formatter.rb, line 9
def handle_interrupt
  if RSpec.world.wants_to_quit
    exit!(1)
  else
    RSpec.world.wants_to_quit = true
  end
end