Class: Cucumber::Tree::RowStepOutline
- Defined in:
- lib/gems/cucumber-0.1.15/lib/cucumber/tree/step.rb
Constant Summary
Constants inherited from BaseStep
BaseStep::PENDING_ADJUSTMENT, BaseStep::REGULAR_ADJUSTMENT
Instance Attribute Summary collapse
-
#visible_args ⇒ Object
readonly
Returns the value of attribute visible_args.
Attributes inherited from Step
#arity, #extra_args, #keyword, #line, #name
Attributes inherited from BaseStep
Instance Method Summary collapse
-
#initialize(scenario, step, name, visible_args, line) ⇒ RowStepOutline
constructor
A new instance of RowStepOutline.
- #outline? ⇒ Boolean
- #row? ⇒ Boolean
Methods inherited from Step
Methods inherited from BaseStep
#actual_keyword, #execute_in, #file, #forced_to_pending?, #format_error, #id, #length, new_id!, #padding_length, #previous_step, #steps
Constructor Details
#initialize(scenario, step, name, visible_args, line) ⇒ RowStepOutline
Returns a new instance of RowStepOutline.
158 159 160 161 162 |
# File 'lib/gems/cucumber-0.1.15/lib/cucumber/tree/step.rb', line 158 def initialize(scenario, step, name, visible_args, line) @visible_args = visible_args @extra_args = step.extra_args super(scenario, keyword, name, line) end |
Instance Attribute Details
#visible_args ⇒ Object (readonly)
Returns the value of attribute visible_args.
156 157 158 |
# File 'lib/gems/cucumber-0.1.15/lib/cucumber/tree/step.rb', line 156 def visible_args @visible_args end |
Instance Method Details
#outline? ⇒ Boolean
168 169 170 |
# File 'lib/gems/cucumber-0.1.15/lib/cucumber/tree/step.rb', line 168 def outline? true end |
#row? ⇒ Boolean
164 165 166 |
# File 'lib/gems/cucumber-0.1.15/lib/cucumber/tree/step.rb', line 164 def row? true end |