Class: Cucumber::Tree::RowStepOutline

Inherits:
Step show all
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

Attributes inherited from Step

#arity, #extra_args, #keyword, #line, #name

Attributes inherited from BaseStep

#error, #scenario

Instance Method Summary collapse

Methods inherited from Step

#format, #regexp_args_proc

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_argsObject (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

Returns:

  • (Boolean)


168
169
170
# File 'lib/gems/cucumber-0.1.15/lib/cucumber/tree/step.rb', line 168

def outline?
  true
end

#row?Boolean

Returns:

  • (Boolean)


164
165
166
# File 'lib/gems/cucumber-0.1.15/lib/cucumber/tree/step.rb', line 164

def row?
  true
end