Sha256: 017dfabb6a2318022b6463a2ae2cad2a446d41f712ca2a25e4b84c1c8e9f5385
Contents?: true
Size: 1.22 KB
Versions: 76
Compression:
Stored size: 1.22 KB
Contents
require File.expand_path("#{File.dirname(__FILE__)}/../spec_helper") module OneOrMoreSpec class Foo < Treetop::Runtime::SyntaxNode end describe "one or more of a terminal symbol followed by a node class declaration and a block" do testing_expression '"foo"+ <OneOrMoreSpec::Foo> { def a_method; end }' it "fails to parse epsilon, reporting a failure" do parse('') do |result| result.should be_nil terminal_failures = parser.terminal_failures terminal_failures.size.should == 1 failure = terminal_failures.first failure.index.should == 0 failure.expected_string.should == 'foo' end end it "successfully parses two of that terminal in a row, returning an instance of the declared node class and reporting the failure the third parsing attempt" do parse("foofoo") do |result| result.should_not be_nil result.should be_an_instance_of(Foo) result.should respond_to(:a_method) terminal_failures = parser.terminal_failures terminal_failures.size.should == 1 failure = terminal_failures.first failure.index.should == 6 failure.expected_string.should == 'foo' end end end end
Version data entries
76 entries across 76 versions & 7 rubygems