module Minitest

Public Class Methods

plugin_warning_init(opts) click to toggle source
# File lib/minitest/warning_plugin.rb, line 4
def self.plugin_warning_init(opts)
  reporter.reporters.each do |reporter|
    reporter.class.prepend(Minitest::Warning::Reporter) if reporter.kind_of?(SummaryReporter)
  end
end