# File test/src/simple_parser_test.rb, line 71
  def testAre
    assertParser('abc', 'ab', string('ab'))
    assertError('abc', '"ab" expected', char('a') >> str('ab'), 1)
  end