class Rung::Definition::NestedStep

Attributes

nested_steps[R]

Public Class Methods

new(action, nested_steps, options = {}) click to toggle source
Calls superclass method
# File lib/rung/definition/nested_step.rb, line 4
def initialize(action, nested_steps, options = {})
  super(action, options)
  @nested_steps = nested_steps
end

Public Instance Methods

nested?() click to toggle source
# File lib/rung/definition/nested_step.rb, line 11
def nested?
  true
end