diff options
Diffstat (limited to 'cache/query_test.go')
-rw-r--r-- | cache/query_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cache/query_test.go b/cache/query_test.go index 29d2f585..f34b3e6a 100644 --- a/cache/query_test.go +++ b/cache/query_test.go @@ -22,6 +22,9 @@ func TestQueryParse(t *testing.T) { {"label:hello", true}, {`label:"Good first issue"`, true}, + {"title:titleOne", true}, + {`title:"Bug titleTwo"`, true}, + {"sort:edit", true}, {"sort:unknown", false}, } |