Class: Spinach::Feature
- Inherits:
-
Object
- Object
- Spinach::Feature
- Defined in:
- lib/spinach/feature.rb
Instance Attribute Summary collapse
-
#background ⇒ Object
Returns the value of attribute background.
-
#description ⇒ Object
Returns the value of attribute description.
-
#filename ⇒ Object
Returns the value of attribute filename.
-
#lines ⇒ Object
Returns the value of attribute lines.
-
#name ⇒ Object
Returns the value of attribute name.
-
#scenarios ⇒ Object
Returns the value of attribute scenarios.
-
#tags ⇒ Object
Returns the value of attribute tags.
Instance Method Summary collapse
- #background_steps ⇒ Object
-
#initialize ⇒ Feature
constructor
A new instance of Feature.
Constructor Details
#initialize ⇒ Feature
Returns a new instance of Feature.
8 9 10 11 |
# File 'lib/spinach/feature.rb', line 8 def initialize @scenarios = [] = [] end |
Instance Attribute Details
#background ⇒ Object
Returns the value of attribute background.
5 6 7 |
# File 'lib/spinach/feature.rb', line 5 def background @background end |
#description ⇒ Object
Returns the value of attribute description.
6 7 8 |
# File 'lib/spinach/feature.rb', line 6 def description @description end |
#filename ⇒ Object
Returns the value of attribute filename.
3 4 5 |
# File 'lib/spinach/feature.rb', line 3 def filename @filename end |
#lines ⇒ Object
Returns the value of attribute lines.
3 4 5 |
# File 'lib/spinach/feature.rb', line 3 def lines @lines end |
#name ⇒ Object
Returns the value of attribute name.
4 5 6 |
# File 'lib/spinach/feature.rb', line 4 def name @name end |
#scenarios ⇒ Object
Returns the value of attribute scenarios.
4 5 6 |
# File 'lib/spinach/feature.rb', line 4 def scenarios @scenarios end |
#tags ⇒ Object
Returns the value of attribute tags.
4 5 6 |
# File 'lib/spinach/feature.rb', line 4 def end |
Instance Method Details
#background_steps ⇒ Object
13 14 15 |
# File 'lib/spinach/feature.rb', line 13 def background_steps @background.nil? ? [] : @background.steps end |