Class: ScenarioOutline
- Inherits:
-
Scenario
- Object
- Item
- Collection
- SimpleGherkinCollection
- TaggedGherkinCollection
- Scenario
- ScenarioOutline
- Defined in:
- lib/cuker/models/models_ready.rb
Instance Attribute Summary collapse
-
#examples ⇒ Object
Returns the value of attribute examples.
Attributes inherited from Scenario
Attributes inherited from TaggedGherkinCollection
Attributes inherited from SimpleGherkinCollection
Attributes inherited from Collection
Attributes inherited from Item
Instance Method Summary collapse
-
#initialize(content_str, keyword = "Scenario Outline:") ⇒ ScenarioOutline
constructor
A new instance of ScenarioOutline.
Methods inherited from SimpleGherkinCollection
Methods inherited from Collection
Methods inherited from Item
Constructor Details
#initialize(content_str, keyword = "Scenario Outline:") ⇒ ScenarioOutline
Returns a new instance of ScenarioOutline.
128 129 130 131 |
# File 'lib/cuker/models/models_ready.rb', line 128 def initialize content_str, keyword = "Scenario Outline:" @keyword = keyword super content_str, @keyword end |
Instance Attribute Details
#examples ⇒ Object
Returns the value of attribute examples.
126 127 128 |
# File 'lib/cuker/models/models_ready.rb', line 126 def examples @examples end |