Exception: CemAcpt::TestRunner::RspecOutputJSONParserError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/cem_acpt/test_runner/runner_result.rb

Overview

Error thrown when there are problems parsing the JSON output from Rspec

Instance Method Summary collapse

Constructor Details

#initialize(err = nil) ⇒ RspecOutputJSONParserError

Returns a new instance of RspecOutputJSONParserError.



9
10
11
12
# File 'lib/cem_acpt/test_runner/runner_result.rb', line 9

def initialize(err = nil)
  super err
  set_backtrace err.backtrace unless err.nil?
end