aboutsummaryrefslogtreecommitdiffstats
path: root/cache/query_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'cache/query_test.go')
-rw-r--r--cache/query_test.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/cache/query_test.go b/cache/query_test.go
index 24d80035..646a6d73 100644
--- a/cache/query_test.go
+++ b/cache/query_test.go
@@ -16,9 +16,13 @@ func TestQueryParse(t *testing.T) {
{"status:unknown", false},
{"author:rene", true},
- // Todo: fix parsing
- // {"author:\"Rene Descartes\"", true},
+ {"author:\"René Descartes\"", true},
+ {"label:hello", true},
+ {"label:\"Good first issue\"", true},
+
+ {"sort:edit", true},
+ {"sort:unknown", false},
}
for _, test := range tests {