aboutsummaryrefslogtreecommitdiffstats
path: root/test/t_queryparse.py
blob: e1728e3449710d8f73f46ab56ea796a485a63aee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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"])