# File test/src/simple_parser_test.rb, line 63
  def testIsnt
    assertParser('abc', ?a, isnt(?b))
    assertError('abc', '97 unexpected', isnt(?a))
    assertError('abc', "'b' unexpected", not_char(?b) >> not_char('b'), 1)
  end