Sha256: 9b32af704668a75abc10c1f30414daafc63a89973376f2f468ba14d389bacc90

Contents?: true

Size: 458 Bytes

Versions: 6

Compression:

Stored size: 458 Bytes

Contents

# Disable fail on first failure
class Minitest::Runnable
  def self.check_failures result, reporter
  end
end

# Restore summary reporter's output
class Minitest::SummaryReporter < Minitest::StatisticsReporter
  def start # :nodoc:
    super

    io.puts "Run options: #{options[:args]}"
    io.puts
    io.puts "# Running:"
    io.puts

    self.sync = io.respond_to? :"sync=" # stupid emacs
    self.old_sync, io.sync = io.sync, true if self.sync
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spec-5.0.19 test/minitest/test_helper.rb
spec-5.0.18 test/minitest/test_helper.rb
spec-5.0.17 test/minitest/test_helper.rb
spec-5.0.16 test/minitest/test_helper.rb
spec-5.0.15 test/minitest/test_helper.rb
spec-5.0.14 test/minitest/test_helper.rb