aboutsummaryrefslogtreecommitdiffstats
path: root/test/t_queryparse.py
blob: f3709d6c00153a1be2ec1142c966067b5156fce2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python3
import sys
sys.path.insert(0, "../")
import queryparse

def f(x):
	print(x)
	print(queryparse.parse(x))

f(["x", "OR", "y"])
f(["x", "y", "OR", "a", "b"])
f(["x", "y", "z", "w"])
f(["NOT", "x", "OR", "y"])
f(["NOT", "[", "x", "y", "z", "]"])