Sha256: b710f007a6970856b1aaba47d1e75e0f0ee0befdc529f02f12855524eec9fdb8

Contents?: true

Size: 780 Bytes

Versions: 4

Compression:

Stored size: 780 Bytes

Contents

Given /^a "([^\"]*)" "([^\"]*)" parser$/ do |ruby_or_native, parser_name|
  parser = Gherkin::Parser.new(@listener, false, parser_name)
  @lexer = Gherkin::I18nLexer.new(parser, ruby_or_native == "ruby")
end

Given "the following text is parsed:" do |text|
  @lexer.scan(text)
end

Then "there should be no parse errors" do
  @listener.errors.should == []
end

Then /^there should be a parse error on (line \d+)$/ do |line|
  @listener.line(line).should include(:syntax_error, line)
end

Then /^there should be parse errors on (lines .*)$/ do |lines|
  lines.each do |line|
    Then "there should be a parse error on line #{line}"
  end
end

Transform /^line \d+$/ do |step_arg|
  tr_line_number(step_arg)
end

Transform /^lines .*$/ do |step_arg|
  tr_line_numbers(step_arg)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gherkin-1.0.3-i386-mswin32 features/step_definitions/gherkin_steps.rb
gherkin-1.0.3-i386-mingw32 features/step_definitions/gherkin_steps.rb
gherkin-1.0.3-java features/step_definitions/gherkin_steps.rb
gherkin-1.0.3 features/step_definitions/gherkin_steps.rb