Class: CI::Reporter::RSpecFailure

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

Overview

Wrapper around a RSpec error or failure to be used by the test suite to interpret results.

Instance Method Summary collapse

Constructor Details

#initialize(failure) ⇒ RSpecFailure

Returns a new instance of RSpecFailure.



9
10
11
# File 'lib/ci/reporter/rspec.rb', line 9

def initialize(failure)
  @failure = failure
end

Instance Method Details

#error?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'lib/ci/reporter/rspec.rb', line 17

def error?
  !@failure.expectation_not_met?
end

#failure?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/ci/reporter/rspec.rb', line 13

def failure?
  @failure.expectation_not_met?
end

#locationObject



23
# File 'lib/ci/reporter/rspec.rb', line 23

def location() @failure.exception.backtrace.join("\n") end

#messageObject



22
# File 'lib/ci/reporter/rspec.rb', line 22

def message() @failure.exception.message end

#nameObject



21
# File 'lib/ci/reporter/rspec.rb', line 21

def name() @failure.exception.class.name end