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

Methods inherited from AbstractReporter

#synchronize

Constructor Details

#initialize(*reporters) ⇒ CompositeReporter

:nodoc:



970
971
972
973
# File 'lib/minitest.rb', line 970

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

Instance Attribute Details

#reportersObject

The list of reporters to dispatch to.



968
969
970
# File 'lib/minitest.rb', line 968

def reporters
  @reporters
end

Instance Method Details

#<<(reporter) ⇒ Object

Add another reporter to the mix.



982
983
984
# File 'lib/minitest.rb', line 982

def << reporter
  self.reporters << reporter
end

#ioObject

:nodoc:



975
976
977
# File 'lib/minitest.rb', line 975

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

#passed?Boolean

:nodoc:

Returns:

  • (Boolean)


986
987
988
# File 'lib/minitest.rb', line 986

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

#prerecord(klass, name) ⇒ Object

:nodoc:



994
995
996
997
998
999
# File 'lib/minitest.rb', line 994

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:



1001
1002
1003
1004
1005
# File 'lib/minitest.rb', line 1001

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

#reportObject

:nodoc:



1007
1008
1009
# File 'lib/minitest.rb', line 1007

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

#startObject

:nodoc:



990
991
992
# File 'lib/minitest.rb', line 990

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