class Gherkin::Formatter::Model::ScenarioOutline
Public Class Methods
new(comments, tags, keyword, name, description, line, id)
click to toggle source
Calls superclass method
Gherkin::Formatter::Model::TagStatement.new
# File lib/gherkin/formatter/model.rb, line 84 def initialize(comments, tags, keyword, name, description, line, id) super(comments, tags, keyword, name, description, line, id) @type = "scenario_outline" end
Public Instance Methods
replay(formatter)
click to toggle source
# File lib/gherkin/formatter/model.rb, line 89 def replay(formatter) formatter.scenario_outline(self) end