module Cucumber::StepMatchSearch
Public Class Methods
Source
# File lib/cucumber/step_match_search.rb, line 5 def self.new(search, configuration) CachesStepMatch.new( AssertUnambiguousMatch.new( configuration.guess? ? AttemptToGuessAmbiguousMatch.new(search) : search, configuration ) ) end