Class: Cucumber::CucumberExpressions::ExpressionFactory
- Inherits:
-
Object
- Object
- Cucumber::CucumberExpressions::ExpressionFactory
- Defined in:
- lib/cucumber/cucumber_expressions/expression_factory.rb
Instance Method Summary collapse
- #create_expression(string_or_regexp) ⇒ Object
-
#initialize(parameter_type_registry) ⇒ ExpressionFactory
constructor
A new instance of ExpressionFactory.
Constructor Details
#initialize(parameter_type_registry) ⇒ ExpressionFactory
Returns a new instance of ExpressionFactory.
10 11 12 |
# File 'lib/cucumber/cucumber_expressions/expression_factory.rb', line 10 def initialize(parameter_type_registry) @parameter_type_registry = parameter_type_registry end |
Instance Method Details
#create_expression(string_or_regexp) ⇒ Object
14 15 16 17 18 19 20 21 |
# File 'lib/cucumber/cucumber_expressions/expression_factory.rb', line 14 def create_expression(string_or_regexp) case string_or_regexp when String then CucumberExpression.new(string_or_regexp, @parameter_type_registry) when Regexp then RegularExpression.new(string_or_regexp, @parameter_type_registry) else raise CucumberExpressionError.new("Can't create an expression from #{string_or_regexp.inspect}") end end |