Class: Minitest::CompositeReporter

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

Overview

Dispatch to multiple reporters as one.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*reporters) ⇒ CompositeReporter

:nodoc:



610
611
612
613
# File 'lib/minitest.rb', line 610

def initialize *reporters # :nodoc:
  super()
  self.reporters = reporters
end

Instance Attribute Details

#reportersObject

The list of reporters to dispatch to.



608
609
610
# File 'lib/minitest.rb', line 608

def reporters
  @reporters
end

Instance Method Details

#<<(reporter) ⇒ Object

Add another reporter to the mix.



618
619
620
# File 'lib/minitest.rb', line 618

def << reporter
  self.reporters << reporter
end

#passed?Boolean

:nodoc:

Returns:

  • (Boolean)


622
623
624
# File 'lib/minitest.rb', line 622

def passed? # :nodoc:
  self.reporters.all?(&:passed?)
end

#record(result) ⇒ Object

:nodoc:



630
631
632
633
634
# File 'lib/minitest.rb', line 630

def record result # :nodoc:
  self.reporters.each do |reporter|
    reporter.record result
  end
end

#reportObject

:nodoc:



636
637
638
# File 'lib/minitest.rb', line 636

def report # :nodoc:
  self.reporters.each(&:report)
end

#startObject

:nodoc:



626
627
628
# File 'lib/minitest.rb', line 626

def start # :nodoc:
  self.reporters.each(&:start)
end