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:



450
451
452
453
454
# File 'lib/minitest.rb', line 450

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

Instance Attribute Details

#ioObject

The IO used to report.



443
444
445
# File 'lib/minitest.rb', line 443

def io
  @io
end

#optionsObject

Command-line options for this run.



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

def options
  @options
end