module Cucumber::StepMatchSearch

Public Class Methods

new(search, configuration) click to toggle source
# File lib/cucumber/step_match_search.rb, line 3
def self.new(search, configuration)
  CachesStepMatch.new(
    AssertUnambiguousMatch.new(
      configuration.guess? ? AttemptToGuessAmbiguousMatch.new(search) : search,
      configuration
    )
  )
end