Class: Minitest::ProgressReporter

Inherits:
Reporter show all
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

#io, #options

Instance Method Summary collapse

Methods inherited from Reporter

#initialize

Methods inherited from AbstractReporter

#initialize, #passed?, #report, #start, #synchronize

Constructor Details

This class inherits a constructor from Minitest::Reporter

Instance Method Details

#prerecord(klass, name) ⇒ Object

:nodoc:



692
693
694
695
696
697
# File 'lib/minitest.rb', line 692

def prerecord klass, name #:nodoc:
  if options[:verbose] then
    io.print "%s#%s = " % [klass.name, name]
    io.flush
  end
end

#record(result) ⇒ Object

:nodoc:



699
700
701
702
703
# File 'lib/minitest.rb', line 699

def record result # :nodoc:
  io.print "%.2f s = " % [result.time] if options[:verbose]
  io.print result.result_code
  io.puts if options[:verbose]
end