Module: Minitest
- Defined in:
- lib/minitest/rails_plugin.rb
Defined Under Namespace
Classes: SuppressedSummaryReporter
Class Method Summary collapse
-
.plugin_rails_init(options) ⇒ Object
Owes great inspiration to test runner trailblazers like RSpec, minitest-reporters, maxitest and others.
- .plugin_rails_options(opts, options) ⇒ Object
- .plugin_rails_replace_reporters(minitest_reporter, options) ⇒ Object
Class Method Details
.plugin_rails_init(options) ⇒ Object
Owes great inspiration to test runner trailblazers like RSpec, minitest-reporters, maxitest and others.
40 41 42 43 44 45 46 47 |
# File 'lib/minitest/rails_plugin.rb', line 40 def self.plugin_rails_init() unless [:full_backtrace] || ENV["BACKTRACE"] # Plugin can run without Rails loaded, check before filtering. Minitest.backtrace_filter = ::Rails.backtrace_cleaner if ::Rails.respond_to?(:backtrace_cleaner) end self.plugin_rails_replace_reporters(reporter, ) end |
.plugin_rails_options(opts, options) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/minitest/rails_plugin.rb', line 15 def self.(opts, ) ::Rails::TestUnit::Runner.(opts) opts.on("-b", "--backtrace", "Show the complete backtrace") do [:full_backtrace] = true end opts.on("-d", "--defer-output", "Output test failures and errors after the test run") do [:output_inline] = false end opts.on("-f", "--fail-fast", "Abort test run on first failure or error") do [:fail_fast] = true end opts.on("-c", "--[no-]color", "Enable color in the output") do |value| [:color] = value end [:color] = true [:output_inline] = true end |
.plugin_rails_replace_reporters(minitest_reporter, options) ⇒ Object
49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/minitest/rails_plugin.rb', line 49 def self.plugin_rails_replace_reporters(minitest_reporter, ) return unless minitest_reporter.kind_of?(Minitest::CompositeReporter) # Replace progress reporter for colors. if minitest_reporter.reporters.reject! { |reporter| reporter.kind_of?(SummaryReporter) } != nil minitest_reporter << SuppressedSummaryReporter.new([:io], ) end if minitest_reporter.reporters.reject! { |reporter| reporter.kind_of?(ProgressReporter) } != nil minitest_reporter << ::Rails::TestUnitReporter.new([:io], ) end end |