Module: ComposableOperations::Matcher::Execution
- Defined in:
- lib/composable_operations/matcher/execution.rb
Defined Under Namespace
Classes: Base, FailToPerform, HaltWhilePerforming, SucceedToPerform
Instance Method Summary
collapse
Instance Method Details
214
215
216
|
# File 'lib/composable_operations/matcher/execution.rb', line 214
def fail_to_perform
FailToPerform.new
end
|
218
219
220
|
# File 'lib/composable_operations/matcher/execution.rb', line 218
def halt_while_performing
HaltWhilePerforming.new
end
|
210
211
212
|
# File 'lib/composable_operations/matcher/execution.rb', line 210
def succeed_to_perform
SucceedToPerform.new
end
|