class Cucumber::Ast::Scenario

def init

def init
  return if @steps
  @background.init
  @background.feature_elements << self
  attach_steps(@raw_steps)
  step_invocations = @raw_steps.map{|step| step.step_invocation}
  @steps = @background.step_collection(step_invocations)
end