aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2021-07-26 00:07:02 -0400
committerGravatar - 2021-07-26 22:55:52 -0400
commit00cb58762ca824c3dc17e9d39e0cf04c5a9e7a40 (patch)
tree35c165b40d90e4891449b63bb4e235af20b37219 /test
parentqueryparse: fix infinite recursion in '[' e1 ']' (diff)
queryparse: fix tagglob and titleglob, fix encapsulating literals
Diffstat (limited to 'test')
-rwxr-xr-xtest/t_queryparse.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/t_queryparse.py b/test/t_queryparse.py
index f3709d6..ac9cf24 100755
--- a/test/t_queryparse.py
+++ b/test/t_queryparse.py
@@ -12,3 +12,5 @@ f(["x", "y", "OR", "a", "b"])
f(["x", "y", "z", "w"])
f(["NOT", "x", "OR", "y"])
f(["NOT", "[", "x", "y", "z", "]"])
+f(["x", "y", "NOT", "z", "[", "a", "OR", "b", "]"])
+f(["~~internal-*", "~-Application*", "NOT", "~~*xyz*"])