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:



447
448
449
450
451
# File 'lib/minitest.rb', line 447

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

Instance Attribute Details

#ioObject

The IO used to report.



440
441
442
# File 'lib/minitest.rb', line 440

def io
  @io
end

#optionsObject

Command-line options for this run.



445
446
447
# File 'lib/minitest.rb', line 445

def options
  @options
end