global

def capture_exceptions(&block)

def capture_exceptions(&block)
  capture_exceptions_without_stop(&block)
rescue Interrupt
  Maxitest.interrupted = true
  self.failures << Minitest::UnexpectedError.new($!)
end