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:



858
859
860
861
# File 'lib/minitest.rb', line 858

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

Instance Attribute Details

#reportersObject

The list of reporters to dispatch to.



856
857
858
# File 'lib/minitest.rb', line 856

def reporters
  @reporters
end

Instance Method Details

#<<(reporter) ⇒ Object

Add another reporter to the mix.



870
871
872
# File 'lib/minitest.rb', line 870

def << reporter
  self.reporters << reporter
end

#ioObject

:nodoc:



863
864
865
# File 'lib/minitest.rb', line 863

def io # :nodoc:
  reporters.first.io
end

#passed?Boolean

:nodoc:



874
875
876
# File 'lib/minitest.rb', line 874

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

#prerecord(klass, name) ⇒ Object

:nodoc:



882
883
884
885
886
887
# File 'lib/minitest.rb', line 882

def prerecord klass, name # :nodoc:
  self.reporters.each do |reporter|
    # TODO: remove conditional for minitest 6
    reporter.prerecord klass, name if reporter.respond_to? :prerecord
  end
end

#record(result) ⇒ Object

:nodoc:



889
890
891
892
893
# File 'lib/minitest.rb', line 889

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

#reportObject

:nodoc:



895
896
897
# File 'lib/minitest.rb', line 895

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

#startObject

:nodoc:



878
879
880
# File 'lib/minitest.rb', line 878

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