Class: Cucumber::AmbiguousStepMatch

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/step_match.rb

Instance Method Summary collapse

Constructor Details

#initialize(error) ⇒ AmbiguousStepMatch

Returns a new instance of AmbiguousStepMatch.



144
145
146
# File 'lib/cucumber/step_match.rb', line 144

def initialize(error)
  @error = error
end

Instance Method Details

#activate(test_step) ⇒ Object



148
149
150
# File 'lib/cucumber/step_match.rb', line 148

def activate(test_step)
  test_step.with_action { raise @error }
end