Exception: Cucumber::StepMother::Ambiguous

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

Overview

Raised when a step matches 2 or more StepDefinition

Instance Method Summary collapse

Constructor Details

#initialize(step_name, step_definitions) ⇒ Ambiguous

Returns a new instance of Ambiguous.



28
29
30
31
32
33
# File 'lib/cucumber/step_mother.rb', line 28

def initialize(step_name, step_definitions)
  message = "Ambiguous match of \"#{step_name}\":\n\n"
  message << step_definitions.map{|sd| sd.to_backtrace_line}.join("\n")
  message << "\n\n"
  super(message)
end