Class: Cucumber::Ast::PyString

Inherits:
Object
  • Object
show all
Defined in:
lib/cucumber/ast/py_string.rb

Overview

Represents an inline argument in a step. Example:

Given the message
  """
  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.

Instance Method Summary collapse

Constructor Details

#initialize(start_line, end_line, string, quotes_indent) ⇒ PyString

Returns a new instance of PyString.



20
21
22
23
# File 'lib/cucumber/ast/py_string.rb', line 20

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

Instance Method Details

#accept(visitor, status) ⇒ Object



33
34
35
# File 'lib/cucumber/ast/py_string.rb', line 33

def accept(visitor, status)
  visitor.visit_py_string(to_s, status)
end

#arguments_replaced(arguments) ⇒ Object

:nodoc:



37
38
39
40
41
42
43
# File 'lib/cucumber/ast/py_string.rb', line 37

def arguments_replaced(arguments) #:nodoc:
  string = @string
  arguments.each do |name, value|
    string = string.gsub(name, value)
  end
  PyString.new(@start_line, @end_line, string, @quotes_indent)
end

#at_lines?(lines) ⇒ Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/cucumber/ast/py_string.rb', line 29

def at_lines?(lines)
  lines.detect{|l| l >= @start_line && l <= @end_line}
end

#to_sObject



25
26
27
# File 'lib/cucumber/ast/py_string.rb', line 25

def to_s
  @string.indent(-@quotes_indent)
end

#to_sexpObject

For testing only



46
47
48
# File 'lib/cucumber/ast/py_string.rb', line 46

def to_sexp #:nodoc:
  [:py_string, to_s]
end