Class: Minitest::Reporter

Inherits:
AbstractReporter show all
Defined in:
lib/minitest.rb

Overview

:nodoc:

Direct Known Subclasses

ProgressReporter, StatisticsReporter

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from AbstractReporter

#passed?, #record, #report, #start

Constructor Details

#initialize(io = $stdout, options = {}) ⇒ Reporter

:nodoc:



464
465
466
467
468
# File 'lib/minitest.rb', line 464

def initialize io = $stdout, options = {} # :nodoc:
  super()
  self.io      = io
  self.options = options
end

Instance Attribute Details

#ioObject

The IO used to report.



457
458
459
# File 'lib/minitest.rb', line 457

def io
  @io
end

#optionsObject

Command-line options for this run.



462
463
464
# File 'lib/minitest.rb', line 462

def options
  @options
end