Class: ExceptionState

Inherits:
Object show all
Defined in:
lib/mspec/runner/exception.rb

Constant Summary collapse

PATH =
/#{File.expand_path(File.dirname(__FILE__) + '/../../..')}/

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(state, location, exception) ⇒ ExceptionState

Returns a new instance of ExceptionState.



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/mspec/runner/exception.rb', line 6

def initialize(state, location, exception)
  @exception = exception

  @description = location ? "An exception occurred during: #{location}" : ""
  if state
    @description << "\n" unless @description.empty?
    @description << state.description
    @describe = state.describe
    @it = state.it
  else
    @describe = @it = ""
  end
end

Instance Attribute Details

#describeObject (readonly)

Returns the value of attribute describe.



2
3
4
# File 'lib/mspec/runner/exception.rb', line 2

def describe
  @describe
end

#descriptionObject (readonly)

Returns the value of attribute description.



2
3
4
# File 'lib/mspec/runner/exception.rb', line 2

def description
  @description
end

#exceptionObject (readonly)

Returns the value of attribute exception.



2
3
4
# File 'lib/mspec/runner/exception.rb', line 2

def exception
  @exception
end

#itObject (readonly)

Returns the value of attribute it.



2
3
4
# File 'lib/mspec/runner/exception.rb', line 2

def it
  @it
end

Instance Method Details

#backtraceObject



35
36
37
38
39
40
41
42
# File 'lib/mspec/runner/exception.rb', line 35

def backtrace
  begin
    bt = @exception.awesome_backtrace.show.split "\n"
  rescue Exception
    bt = @exception.backtrace || []
  end
  bt.reject { |line| PATH =~ line }.join("\n")
end

#failure?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/mspec/runner/exception.rb', line 20

def failure?
  [ExpectationNotMetError, ExpectationNotFoundError].any? { |e| @exception.is_a? e }
end

#messageObject



24
25
26
27
28
29
30
31
32
33
# File 'lib/mspec/runner/exception.rb', line 24

def message
  if @exception.message.empty?
    "<No message>"
  elsif @exception.class == ExpectationNotMetError ||
        @exception.class == ExpectationNotFoundError
    @exception.message
  else
    "#{@exception.class}: #{@exception.message}"
  end
end