class Cucumber::AmbiguousStepMatch
Public Class Methods
Source
# File lib/cucumber/step_match.rb, line 146 def initialize(error) @error = error end
Public Instance Methods
Source
# File lib/cucumber/step_match.rb, line 150 def activate(test_step) test_step.with_unskippable_action { raise Core::Test::Result::Ambiguous, @error.message } end