class Cucumber::RbSupport::Snippet::MultilineArgumentSnippet::Builder

Public Instance Methods

data_table(table, *args) click to toggle source
# File lib/cucumber/rb_support/snippet.rb, line 128
def data_table(table, *args)
  @result = DataTable.new(table)
end
doc_string(*args) click to toggle source
# File lib/cucumber/rb_support/snippet.rb, line 124
def doc_string(*args)
  @result = DocString.new
end
result() click to toggle source
# File lib/cucumber/rb_support/snippet.rb, line 132
def result
  @result || None.new
end