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:



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

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

Instance Attribute Details

#reportersObject

The list of reporters to dispatch to.



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

def reporters
  @reporters
end

Instance Method Details

#<<(reporter) ⇒ Object

Add another reporter to the mix.



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

def << reporter
  self.reporters << reporter
end

#passed?Boolean

:nodoc:

Returns:

  • (Boolean)


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

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

#record(result) ⇒ Object

:nodoc:



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

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

#reportObject

:nodoc:



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

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

#startObject

:nodoc:



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

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