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

#fail_to_performObject



214
215
216
# File 'lib/composable_operations/matcher/execution.rb', line 214

def fail_to_perform
  FailToPerform.new
end

#halt_while_performingObject



218
219
220
# File 'lib/composable_operations/matcher/execution.rb', line 218

def halt_while_performing
  HaltWhilePerforming.new
end

#succeed_to_performObject



210
211
212
# File 'lib/composable_operations/matcher/execution.rb', line 210

def succeed_to_perform
  SucceedToPerform.new
end