Class: Diddy::RunResult::Step
- Inherits:
-
Object
- Object
- Diddy::RunResult::Step
- Defined in:
- lib/diddy/run_result.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#exception ⇒ Object
Returns the value of attribute exception.
-
#result ⇒ Object
Returns the value of attribute result.
-
#scenario ⇒ Object
Returns the value of attribute scenario.
-
#sub_steps ⇒ Object
Returns the value of attribute sub_steps.
Instance Method Summary collapse
-
#initialize(description) ⇒ Step
constructor
A new instance of Step.
Constructor Details
#initialize(description) ⇒ Step
Returns a new instance of Step.
112 113 114 |
# File 'lib/diddy/run_result.rb', line 112 def initialize(description) self.description = description end |
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
110 111 112 |
# File 'lib/diddy/run_result.rb', line 110 def description @description end |
#exception ⇒ Object
Returns the value of attribute exception.
110 111 112 |
# File 'lib/diddy/run_result.rb', line 110 def exception @exception end |
#result ⇒ Object
Returns the value of attribute result.
110 111 112 |
# File 'lib/diddy/run_result.rb', line 110 def result @result end |
#scenario ⇒ Object
Returns the value of attribute scenario.
110 111 112 |
# File 'lib/diddy/run_result.rb', line 110 def scenario @scenario end |
#sub_steps ⇒ Object
Returns the value of attribute sub_steps.
110 111 112 |
# File 'lib/diddy/run_result.rb', line 110 def sub_steps @sub_steps end |