class Hesburgh::Lib::MockRunner::RunWithMismatchError

Raised when the actual :run_with parameter is different than the expected

Public Class Methods

new(actual: nil, expected: nil) click to toggle source
Calls superclass method
# File lib/hesburgh/lib/mock_runner.rb, line 22
def initialize(actual: nil, expected: nil)
  super("RunWith Mismatch Error:\nActual: #{actual.inspect}\nExpected: #{expected.inspect}\n")
end