class Cucumber::UndefinedDynamicStep

Raised when there is no matching StepDefinition for a step called from within another step definition.

Public Class Methods

new(step_name) click to toggle source
Calls superclass method
# File lib/cucumber/errors.rb, line 28
def initialize(step_name)
  super %(Undefined dynamic step: "#{step_name}")
end