diff options
author | Michael Muré <batolettre@gmail.com> | 2019-04-05 00:25:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-05 00:25:22 +0200 |
commit | b9e413c5f95212a0076aae0f473226b32b5fc77a (patch) | |
tree | be6cf69aad498216fa86058b71e2df9a31ebfbd6 /cache/query_test.go | |
parent | 5b0a92dea43f467f31a65a6f02e937d285cb0a71 (diff) | |
parent | 57f0c2f25da3316efbff63f7f8dc73df20705320 (diff) | |
download | git-bug-b9e413c5f95212a0076aae0f473226b32b5fc77a.tar.gz git-bug-b9e413c5f95212a0076aae0f473226b32b5fc77a.zip |
Merge pull request #117 from A-Hilaly/bug-participants
Implement participants and actors functionalities
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 f34b3e6a..9ae62ac4 100644 --- a/cache/query_test.go +++ b/cache/query_test.go @@ -19,6 +19,9 @@ func TestQueryParse(t *testing.T) { {"author:rene", true}, {`author:"René Descartes"`, true}, + {"actor:bernhard", true}, + {"participant:leonhard", true}, + {"label:hello", true}, {`label:"Good first issue"`, true}, |