class ActionOperation::Error::MissingError
Public Class Methods
new(step:)
click to toggle source
# File lib/action_operation/error/missing_error.rb, line 4 def initialize(step:) @step = step end
Public Instance Methods
message()
click to toggle source
# File lib/action_operation/error/missing_error.rb, line 8 def message "expected to see #{@step.name} but the receiver (#{@step.receiver.name}) didn't support it" end