Sha256: 7737f0b97859950772aad464c1b2a99ffd8f62bd8ee349a7dde27899a972e4d0
Contents?: true
Size: 613 Bytes
Versions: 14
Compression:
Stored size: 613 Bytes
Contents
require "bundler/setup" require "minitest/autorun" require "minitest/reporters" module MiniTestReportersTest class TestCase < MiniTest::Unit::TestCase end end # Testing the built-in reporters using automated unit testing would be extremely # brittle. Consequently, there are no unit tests for them. If you'd like to run # all the reporters sequentially on a fake test suite, run `rake gallery`. if ENV["REPORTER"] reporter_klass = MiniTest::Reporters.const_get(ENV["REPORTER"]) MiniTest::Reporters.use!(reporter_klass.new) else MiniTest::Reporters.use!(MiniTest::Reporters::DefaultReporter.new) end
Version data entries
14 entries across 14 versions & 1 rubygems