Sha256: 92452d54bd98bf8e3601289efc66616f49c501cb9f034733a294f040dc70160b
Contents?: true
Size: 1.1 KB
Versions: 76
Compression:
Stored size: 1.1 KB
Contents
require File.expand_path("#{File.dirname(__FILE__)}/../spec_helper") module NotPredicateSpec describe "A !-predicated terminal symbol" do testing_expression '!"foo"' it "fails to parse input matching the terminal symbol" do parse('foo').should be_nil end end describe "A sequence of a terminal and an and another !-predicated terminal" do testing_expression '"foo" !"bar"' it "fails to match input matching both terminals" do parse('foobar').should be_nil end it "successfully parses input matching the first terminal and not the second, reporting the parse failure of the second terminal" do parse('foo') do |result| result.should_not be_nil terminal_failures = parser.terminal_failures terminal_failures.size.should == 1 failure = terminal_failures.first failure.index.should == 3 failure.expected_string.should == 'bar' end end end describe "A !-predicated sequence" do testing_expression '!("a" "b" "c")' it "fails to parse matching input" do parse('abc').should be_nil end end end
Version data entries
76 entries across 76 versions & 7 rubygems