class CI::Reporter::TestUnitSkipped
Wrapper around a Test::Unit
2.0 omission.
Public Class Methods
new(fault)
click to toggle source
# File lib/ci/reporter/test_unit.rb, line 64 def initialize(fault) @fault = fault end
Public Instance Methods
error?()
click to toggle source
# File lib/ci/reporter/test_unit.rb, line 66 def error?() false end
failure?()
click to toggle source
# File lib/ci/reporter/test_unit.rb, line 65 def failure?() false end
location()
click to toggle source
# File lib/ci/reporter/test_unit.rb, line 69 def location() @fault.location.join("\n") end
message()
click to toggle source
# File lib/ci/reporter/test_unit.rb, line 68 def message() @fault.message end
name()
click to toggle source
# File lib/ci/reporter/test_unit.rb, line 67 def name() @fault.class.name end