Class: Stories::Scenario
- Inherits:
-
Object
- Object
- Stories::Scenario
- Defined in:
- lib/stories/runner.rb
Instance Attribute Summary collapse
-
#assertions ⇒ Object
Returns the value of attribute assertions.
-
#name ⇒ Object
Returns the value of attribute name.
-
#steps ⇒ Object
Returns the value of attribute steps.
Instance Method Summary collapse
-
#initialize(name) ⇒ Scenario
constructor
A new instance of Scenario.
Constructor Details
#initialize(name) ⇒ Scenario
Returns a new instance of Scenario.
66 67 68 69 70 |
# File 'lib/stories/runner.rb', line 66 def initialize(name) @name = name @steps = [] @assertions = [] end |
Instance Attribute Details
#assertions ⇒ Object
Returns the value of attribute assertions.
64 65 66 |
# File 'lib/stories/runner.rb', line 64 def assertions @assertions end |
#name ⇒ Object
Returns the value of attribute name.
64 65 66 |
# File 'lib/stories/runner.rb', line 64 def name @name end |
#steps ⇒ Object
Returns the value of attribute steps.
64 65 66 |
# File 'lib/stories/runner.rb', line 64 def steps @steps end |