summaryrefslogtreecommitdiff
path: root/combinator_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'combinator_test.go')
-rw-r--r--combinator_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/combinator_test.go b/combinator_test.go
index b315b37..17a0c11 100644
--- a/combinator_test.go
+++ b/combinator_test.go
@@ -88,6 +88,17 @@ func TestAny(t *testing.T) {
})
})
+
+ // see https://github.com/vektah/goparsify/issues/3
+ t.Run("doesn't succeed early after caller error", func(t *testing.T) {
+ str := "str"
+ str1 := Seq("str", "1")
+ str2 := Any("str2")
+ p := Any(str1, str2, str)
+ _, ps := runParser("str", p)
+ require.False(t, ps.Errored())
+ require.Equal(t, "", ps.Get())
+ })
}
func TestSome(t *testing.T) {