# File lib/ci/reporter/spinach.rb, line 47 def initialize(type, step, failure, step_location) @type = type @step = step @failure = failure @step_location = step_location end
# File lib/ci/reporter/spinach.rb, line 58 def error? @type == :error end
# File lib/ci/reporter/spinach.rb, line 54 def failure? @type == :failed end
# File lib/ci/reporter/spinach.rb, line 70 def location @failure.backtrace.join("\n") end
# File lib/ci/reporter/spinach.rb, line 66 def message @failure.message end
# File lib/ci/reporter/spinach.rb, line 62 def name @failure.class.name end