Module: Cucumber::Parser::Feature::ScenarioOutline1

Defined in:
lib/cucumber/parser/feature.rb

Instance Method Summary collapse

Instance Method Details

#build(background) ⇒ Object



763
764
765
766
767
768
769
770
771
772
773
774
# File 'lib/cucumber/parser/feature.rb', line 763

def build(background)
  Ast::ScenarioOutline.new(
    background,
    comment.build, 
    tags.build,
    scenario_outline_keyword.line, 
    scenario_outline_keyword.text_value, 
    name.text_value, 
    steps.build, 
    examples_sections.build
  )
end