Class: Minitest::ProgressReporter
- Inherits:
-
Reporter
- Object
- AbstractReporter
- Reporter
- Minitest::ProgressReporter
- Defined in:
- lib/minitest.rb
Overview
A very simple reporter that prints the “dots” during the run.
This is added to the top-level CompositeReporter at the start of the run. If you want to change the output of minitest via a plugin, pull this out of the composite and replace it with your own.
Instance Attribute Summary
Attributes inherited from Reporter
Instance Method Summary collapse
-
#record(result) ⇒ Object
:nodoc:.
Methods inherited from Reporter
Methods inherited from AbstractReporter
Constructor Details
This class inherits a constructor from Minitest::Reporter
Instance Method Details
#record(result) ⇒ Object
:nodoc:
480 481 482 483 484 485 |
# File 'lib/minitest.rb', line 480 def record result # :nodoc: io.print "%s#%s = %.2f s = " % [result.class, result.name, result.time] if [:verbose] io.print result.result_code io.puts if [:verbose] end |