Class: YARD::CodeObjects::Cucumber::ScenarioOutline
- Inherits:
-
NamespaceObject
- Object
- NamespaceObject
- NamespaceObject
- YARD::CodeObjects::Cucumber::ScenarioOutline
- Defined in:
- lib/yard/code_objects/cucumber/scenario_outline.rb
Defined Under Namespace
Classes: Examples
Instance Attribute Summary collapse
-
#comments ⇒ Object
Returns the value of attribute comments.
-
#description ⇒ Object
Returns the value of attribute description.
-
#examples ⇒ Object
Returns the value of attribute examples.
-
#feature ⇒ Object
Returns the value of attribute feature.
-
#keyword ⇒ Object
Returns the value of attribute keyword.
-
#scenarios ⇒ Object
Returns the value of attribute scenarios.
-
#steps ⇒ Object
Returns the value of attribute steps.
-
#tags ⇒ Object
Returns the value of attribute tags.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
- #background? ⇒ Boolean
- #examples? ⇒ Boolean
-
#initialize(namespace, name) ⇒ ScenarioOutline
constructor
A new instance of ScenarioOutline.
- #outline? ⇒ Boolean
Methods included from LocationHelper
#file, #line_number, #location
Constructor Details
#initialize(namespace, name) ⇒ ScenarioOutline
Returns a new instance of ScenarioOutline.
7 8 9 10 11 12 13 14 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 7 def initialize(namespace, name) super(namespace, name.to_s.strip) @comments = @description = @value = @feature = nil @steps = [] @tags = [] @scenarios = [] @examples = [] end |
Instance Attribute Details
#comments ⇒ Object
Returns the value of attribute comments.
4 5 6 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 4 def comments @comments end |
#description ⇒ Object
Returns the value of attribute description.
4 5 6 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 4 def description @description end |
#examples ⇒ Object
Returns the value of attribute examples.
5 6 7 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 5 def examples @examples end |
#feature ⇒ Object
Returns the value of attribute feature.
4 5 6 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 4 def feature @feature end |
#keyword ⇒ Object
Returns the value of attribute keyword.
4 5 6 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 4 def keyword @keyword end |
#scenarios ⇒ Object
Returns the value of attribute scenarios.
5 6 7 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 5 def scenarios @scenarios end |
#steps ⇒ Object
Returns the value of attribute steps.
4 5 6 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 4 def steps @steps end |
#tags ⇒ Object
Returns the value of attribute tags.
4 5 6 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 4 def @tags end |
#value ⇒ Object
Returns the value of attribute value.
4 5 6 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 4 def value @value end |
Instance Method Details
#background? ⇒ Boolean
16 17 18 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 16 def background? false end |
#examples? ⇒ Boolean
24 25 26 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 24 def examples? @examples.find { |example| example.rows } end |
#outline? ⇒ Boolean
20 21 22 |
# File 'lib/yard/code_objects/cucumber/scenario_outline.rb', line 20 def outline? true end |