Raised when there is no matching StepDefinition for a step.
# File lib/cucumber/errors.rb, line 6 def initialize(step_name) super %{Undefined step: "#{step_name}"} @step_name = step_name end
# File lib/cucumber/errors.rb, line 11 def nested! @nested = true end
# File lib/cucumber/errors.rb, line 15 def nested? @nested end