Exception: Cucumber::CucumberExpressions::OptionalMayNotBeEmpty

Inherits:
CucumberExpressionError show all
Defined in:
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-cucumber-expressions-15.2.0/lib/cucumber/cucumber_expressions/errors.rb

Instance Method Summary collapse

Methods inherited from CucumberExpressionError

#build_message, #point_at, #point_at_located

Constructor Details

#initialize(node, expression) ⇒ OptionalMayNotBeEmpty

Returns a new instance of OptionalMayNotBeEmpty.



78
79
80
81
82
83
84
85
86
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-cucumber-expressions-15.2.0/lib/cucumber/cucumber_expressions/errors.rb', line 78

def initialize(node, expression)
  super(build_message(
            node.start,
            expression,
            point_at_located(node),
            'An optional must contain some text',
            "If you did not mean to use an optional you can use '\\(' to escape the the '('"
        ))
end