Class | Spec::Runner::Reporter::Failure |
In: |
lib/spec/runner/reporter.rb
|
Parent: | Object |
exception | [R] |
# File lib/spec/runner/reporter.rb, line 117 117: def initialize(example_name, exception) 118: @example_name = example_name 119: @exception = exception 120: end
# File lib/spec/runner/reporter.rb, line 136 136: def expectation_not_met? 137: @exception.is_a?(Spec::Expectations::ExpectationNotMetError) 138: end
# File lib/spec/runner/reporter.rb, line 122 122: def header 123: if expectation_not_met? 124: "'#{@example_name}' FAILED" 125: elsif pending_fixed? 126: "'#{@example_name}' FIXED" 127: else 128: "#{@exception.class.name} in '#{@example_name}'" 129: end 130: end