Class: Gherkin::Formatter::Model::Examples

Inherits:
TagStatement show all
Defined in:
lib/gherkin/formatter/model.rb

Defined Under Namespace

Classes: Builder

Instance Attribute Summary collapse

Attributes inherited from TagStatement

#id, #tags

Attributes inherited from DescribedStatement

#description

Attributes inherited from BasicStatement

#comments, #keyword, #line, #name

Instance Method Summary collapse

Methods inherited from TagStatement

#first_non_comment_line

Methods inherited from BasicStatement

#first_non_comment_line, #line_range

Methods inherited from Hashable

#to_hash

Constructor Details

#initialize(comments, tags, keyword, name, description, line, id, rows) ⇒ Examples

Returns a new instance of Examples.



99
100
101
102
# File 'lib/gherkin/formatter/model.rb', line 99

def initialize(comments, tags, keyword, name, description, line, id, rows)
  super(comments, tags, keyword, name, description, line, id)
  @rows = rows
end

Instance Attribute Details

#rowsObject

 needs to remain mutable for filters



97
98
99
# File 'lib/gherkin/formatter/model.rb', line 97

def rows
  @rows
end

Instance Method Details

#replay(formatter) ⇒ Object



104
105
106
# File 'lib/gherkin/formatter/model.rb', line 104

def replay(formatter)
  formatter.examples(self)
end