Class: CI::Reporter::TestUnitSkipped

Inherits:
Object
  • Object
show all
Defined in:
lib/ci/reporter/test_unit.rb

Overview

Wrapper around a Test::Unit 2.0 omission.

Instance Method Summary collapse

Constructor Details

#initialize(fault) ⇒ TestUnitSkipped

Returns a new instance of TestUnitSkipped.



51
# File 'lib/ci/reporter/test_unit.rb', line 51

def initialize(fault) @fault = fault end

Instance Method Details

#error?Boolean

Returns:

  • (Boolean)


53
# File 'lib/ci/reporter/test_unit.rb', line 53

def error?() false end

#failure?Boolean

Returns:

  • (Boolean)


52
# File 'lib/ci/reporter/test_unit.rb', line 52

def failure?() false end

#locationObject



56
# File 'lib/ci/reporter/test_unit.rb', line 56

def location() @fault.location.join("\n") end

#messageObject



55
# File 'lib/ci/reporter/test_unit.rb', line 55

def message() @fault.message end

#nameObject



54
# File 'lib/ci/reporter/test_unit.rb', line 54

def name() @fault.class.name end