diff options
author | Byron Jones <bjones@mozilla.com> | 2013-07-24 10:59:42 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-07-24 10:59:42 +0200 |
commit | ea996b7667a9a01159f38bb4c6515782eb59609e (patch) | |
tree | 4f156e9ad5fde6c7ffc11be819e3bf37fd682339 /xt | |
parent | 2fe3e064fdeabf1d86b18a71b97cb506a023605b (diff) | |
download | bugzilla-ea996b7667a9a01159f38bb4c6515782eb59609e.tar.gz bugzilla-ea996b7667a9a01159f38bb4c6515782eb59609e.tar.xz |
Bug 345194: fix for xt tests
Diffstat (limited to 'xt')
-rw-r--r-- | xt/lib/Bugzilla/Test/Search/Constants.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xt/lib/Bugzilla/Test/Search/Constants.pm b/xt/lib/Bugzilla/Test/Search/Constants.pm index 24a67e89d..5d84ec6ff 100644 --- a/xt/lib/Bugzilla/Test/Search/Constants.pm +++ b/xt/lib/Bugzilla/Test/Search/Constants.pm @@ -947,6 +947,9 @@ use constant TESTS => { }, }, ], + # XXX these need tests developed + isempty => [], + isnotempty => [], }; # Fields that do not behave as we expect, for InjectionTest. @@ -995,6 +998,8 @@ use constant INJECTION_BROKEN_OPERATOR => { changedafter => { search => 1, field_ok => ['creation_ts'] }, changedbefore => { search => 1, field_ok => ['creation_ts'] }, changedby => { search => 1 }, + isempty => { search => 1 }, + isnotempty => { search => 1 }, }; # Tests run by Bugzilla::Test::Search::InjectionTest. |