Class: Cucumber::Formatter::LegacyApi::Ast::ExampleTableRow
- Defined in:
- lib/cucumber/formatter/legacy_api/ast.rb
Instance Attribute Summary collapse
-
#cells ⇒ Object
Returns the value of attribute cells.
-
#exception ⇒ Object
Returns the value of attribute exception.
-
#language ⇒ Object
Returns the value of attribute language.
-
#location ⇒ Object
Returns the value of attribute location.
-
#status ⇒ Object
Returns the value of attribute status.
Instance Method Summary collapse
Instance Attribute Details
#cells ⇒ Object
Returns the value of attribute cells
239 240 241 |
# File 'lib/cucumber/formatter/legacy_api/ast.rb', line 239 def cells @cells end |
#exception ⇒ Object
Returns the value of attribute exception
239 240 241 |
# File 'lib/cucumber/formatter/legacy_api/ast.rb', line 239 def exception @exception end |
#language ⇒ Object
Returns the value of attribute language
239 240 241 |
# File 'lib/cucumber/formatter/legacy_api/ast.rb', line 239 def language @language end |
#location ⇒ Object
Returns the value of attribute location
239 240 241 |
# File 'lib/cucumber/formatter/legacy_api/ast.rb', line 239 def location @location end |
#status ⇒ Object
Returns the value of attribute status
239 240 241 |
# File 'lib/cucumber/formatter/legacy_api/ast.rb', line 239 def status @status end |
Instance Method Details
#failed? ⇒ Boolean
244 245 246 |
# File 'lib/cucumber/formatter/legacy_api/ast.rb', line 244 def failed? status == :failed end |
#keyword ⇒ Object
252 253 254 255 256 |
# File 'lib/cucumber/formatter/legacy_api/ast.rb', line 252 def keyword # This method is only called when used for the scenario name line with # the expand option, and on that line the keyword is "Scenario" language.scenario_keywords[0] end |
#line ⇒ Object
248 249 250 |
# File 'lib/cucumber/formatter/legacy_api/ast.rb', line 248 def line location.line end |
#name ⇒ Object
240 241 242 |
# File 'lib/cucumber/formatter/legacy_api/ast.rb', line 240 def name '| ' + cells.join(' | ') + ' |' end |