Class: ComposableOperations::Matcher::Execution::FailToPerform

Inherits:
Base
  • Object
show all
Defined in:
lib/composable_operations/matcher/execution.rb

Instance Method Summary collapse

Methods inherited from Base

#and_return, #when_initialized_with

Instance Method Details

#because(message) ⇒ Object



125
126
127
128
# File 'lib/composable_operations/matcher/execution.rb', line 125

def because(message)
  @message = message
  self
end

#descriptionObject



130
131
132
133
134
135
136
# File 'lib/composable_operations/matcher/execution.rb', line 130

def description
  description = "fail to perform"
  description += " because #{message}" if message
  description += " when initialized with custom input (#{input_as_text})" if input
  description += " and return the expected result (#{result_as_text})" if result
  description
end

#failure_messageObject



138
139
140
# File 'lib/composable_operations/matcher/execution.rb', line 138

def failure_message
  "the operation did not fail to perform for the following reason(s):\n#{failure_reasons}"
end

#failure_message_when_negatedObject



142
143
144
# File 'lib/composable_operations/matcher/execution.rb', line 142

def failure_message_when_negated
  "the operation failed unexpectedly"
end

#matches?(operation) ⇒ Boolean

Returns:

  • (Boolean)


120
121
122
123
# File 'lib/composable_operations/matcher/execution.rb', line 120

def matches?(operation)
  self.operation = operation
  failed? && result_as_expected? && message_as_expected?
end