Class: Cucumber::Ast::PyString
Overview
Represents an inline argument in a step. Example:
Given the
"""
I like
Cucumber sandwich
"""
The text between the pair of """
is stored inside a PyString, which is yielded to the StepDefinition block as the last argument.
The StepDefinition can then access the String via the #to_s method. In the example above, that would return: "I like\nCucumber sandwich"
Note how the indentation from the source is stripped away.
Class Method Summary collapse
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
-
#arguments_replaced(arguments) ⇒ Object
:nodoc:.
-
#initialize(start_line, end_line, string, quotes_indent) ⇒ PyString
constructor
A new instance of PyString.
- #to_s ⇒ Object
-
#to_sexp ⇒ Object
For testing only.
Constructor Details
#initialize(start_line, end_line, string, quotes_indent) ⇒ PyString
Returns a new instance of PyString.
25 26 27 28 |
# File 'lib/cucumber/ast/py_string.rb', line 25 def initialize(start_line, end_line, string, quotes_indent) @start_line, @end_line = start_line, end_line @string, @quotes_indent = string.gsub(/\\"/, '"'), quotes_indent end |
Class Method Details
.default_arg_name ⇒ Object
21 22 23 |
# File 'lib/cucumber/ast/py_string.rb', line 21 def self.default_arg_name "string" end |
Instance Method Details
#accept(visitor) ⇒ Object
34 35 36 |
# File 'lib/cucumber/ast/py_string.rb', line 34 def accept(visitor) visitor.visit_py_string(to_s) end |
#arguments_replaced(arguments) ⇒ Object
:nodoc:
38 39 40 41 42 43 44 45 |
# File 'lib/cucumber/ast/py_string.rb', line 38 def arguments_replaced(arguments) #:nodoc: string = @string arguments.each do |name, value| value ||= '' string = string.gsub(name, value) end PyString.new(@start_line, @end_line, string, @quotes_indent) end |
#to_s ⇒ Object
30 31 32 |
# File 'lib/cucumber/ast/py_string.rb', line 30 def to_s @string.indent(-@quotes_indent) end |
#to_sexp ⇒ Object
For testing only
48 49 50 |
# File 'lib/cucumber/ast/py_string.rb', line 48 def to_sexp #:nodoc: [:py_string, to_s] end |