diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-10-03 14:56:09 -0700 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-10-03 14:56:09 -0700 |
commit | 9936d9f1631ef862fed0b7874db751c1be298402 (patch) | |
tree | a1d27e6fcebc57c90d5b5870e97b98de7e73b5b6 /xt | |
parent | 69d45d108aa60aca1099023cf669f489a8331086 (diff) | |
download | bugs-9936d9f1631ef862fed0b7874db751c1be298402.tar bugs-9936d9f1631ef862fed0b7874db751c1be298402.tar.gz bugs-9936d9f1631ef862fed0b7874db751c1be298402.tar.bz2 bugs-9936d9f1631ef862fed0b7874db751c1be298402.tar.xz bugs-9936d9f1631ef862fed0b7874db751c1be298402.zip |
Bug 601513: In xt/search.t, assure that "---" continues to work for the
resolution field
r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'xt')
-rw-r--r-- | xt/lib/Bugzilla/Test/Search/Constants.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xt/lib/Bugzilla/Test/Search/Constants.pm b/xt/lib/Bugzilla/Test/Search/Constants.pm index 9eb575017..e001ad6a5 100644 --- a/xt/lib/Bugzilla/Test/Search/Constants.pm +++ b/xt/lib/Bugzilla/Test/Search/Constants.pm @@ -1259,6 +1259,9 @@ use constant SPECIAL_PARAM_TESTS => ( { field => 'bug_status', operator => 'anyexact', value => '__all__', contains => [1,2,3,4,5] }, + { field => 'resolution', operator => 'anyexact', value => '---', + contains => [5] }, + { field => 'assigned_to', operator => 'anyexact', value => '<1>, <2-reporter>', contains => [1,2], extra_params => { emailreporter1 => 1 } }, |