Class: Gherkin::Formatter::Model::ExamplesTableRow
- Defined in:
- lib/gherkin/formatter/model.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
Attributes inherited from Row
Instance Method Summary collapse
-
#initialize(comments, cells, line, id) ⇒ ExamplesTableRow
constructor
A new instance of ExamplesTableRow.
Methods inherited from Hashable
Constructor Details
#initialize(comments, cells, line, id) ⇒ ExamplesTableRow
Returns a new instance of ExamplesTableRow.
246 247 248 249 |
# File 'lib/gherkin/formatter/model.rb', line 246 def initialize(comments, cells, line, id) super(comments, cells, line) @id = id end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
244 245 246 |
# File 'lib/gherkin/formatter/model.rb', line 244 def id @id end |