From aa10384709c14f65f160747e170d51a260336e33 Mon Sep 17 00:00:00 2001
From: "Meredith L. Patterson" <mlp@thesmartpolitenerd.com>
Date: Sat, 30 Nov 2013 17:18:58 -0800
Subject: [PATCH] and so does h_sequence. time to fix this in swig.

---
 src/bindings/php/Tests/EndTest.php | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 src/bindings/php/Tests/EndTest.php

diff --git a/src/bindings/php/Tests/EndTest.php b/src/bindings/php/Tests/EndTest.php
new file mode 100644
index 00000000..b3fc6c66
--- /dev/null
+++ b/src/bindings/php/Tests/EndTest.php
@@ -0,0 +1,24 @@
+<?php
+include_once 'hammer.php';
+
+class EndPTest extends PHPUnit_Framework_TestCase
+{
+    protected $parser;
+
+    protected function setUp()
+    {
+        $this->parser = h_sequence(h_ch("a"), h_end_p());
+    }
+    public function testSuccess()
+    {
+        $result = h_parse($this->parser, "a");
+        // TODO: fixme when h_ch is fixed
+        $this->assertEquals(98, $result);
+    }
+    public function testFailure()
+    {
+        $result = h_parse($this->parser, "aa");
+        $this->assertEquals(NULL, $result);
+    }
+}
+?>
\ No newline at end of file
-- 
GitLab