Class: CI::Reporter::Failure
- Inherits:
-
Object
- Object
- CI::Reporter::Failure
- Defined in:
- lib/ci/reporter/test_unit.rb
Overview
Factory for constructing either a CI::Reporter::TestUnitFailure or CI::Reporter::TestUnitError depending on the result of the test.
Class Method Summary collapse
Class Method Details
.new(fault) ⇒ Object
14 15 16 17 18 19 |
# File 'lib/ci/reporter/test_unit.rb', line 14 def self.new(fault) return TestUnitFailure.new(fault) if fault.kind_of?(Test::Unit::Failure) return TestUnitSkipped.new(fault) if Test::Unit.constants.include?("Omission") && (fault.kind_of?(Test::Unit::Omission) || fault.kind_of?(Test::Unit::Pending)) return TestUnitNotification.new(fault) if Test::Unit.constants.include?("Notification") && fault.kind_of?(Test::Unit::Notification) TestUnitError.new(fault) end |