Class: CI::Reporter::TestUnitSkipped
- Inherits:
-
Object
- Object
- CI::Reporter::TestUnitSkipped
- Defined in:
- lib/ci/reporter/test_unit.rb
Overview
Wrapper around a Test::Unit
2.0 omission.
Instance Method Summary collapse
- #error? ⇒ Boolean
- #failure? ⇒ Boolean
-
#initialize(fault) ⇒ TestUnitSkipped
constructor
A new instance of TestUnitSkipped.
- #location ⇒ Object
- #message ⇒ Object
- #name ⇒ Object
Constructor Details
#initialize(fault) ⇒ TestUnitSkipped
Returns a new instance of TestUnitSkipped.
43 |
# File 'lib/ci/reporter/test_unit.rb', line 43 def initialize(fault) @fault = fault end |
Instance Method Details
#error? ⇒ Boolean
45 |
# File 'lib/ci/reporter/test_unit.rb', line 45 def error?() false end |
#failure? ⇒ Boolean
44 |
# File 'lib/ci/reporter/test_unit.rb', line 44 def failure?() false end |
#location ⇒ Object
48 |
# File 'lib/ci/reporter/test_unit.rb', line 48 def location() @fault.location.join("\n") end |
#message ⇒ Object
47 |
# File 'lib/ci/reporter/test_unit.rb', line 47 def () @fault. end |