# File test/src/simple_parser_test.rb, line 41
  def testBinds
    assertParser('', 3, value(1).bind do |a|
      value(2).bind{|b|value(a+b)}
    end)
    assertParser('', 2, value(1).repeat(2).bindn do |a,b|
      value(a+b)
    end)
  end