Browse Source

Bug 16325: Add a test for SearchSuggestions when searching for STATUS=''

Test fails as expected without second patch and passes OK with second patch.
Signed-off-by: Marc Véron <veron@veron.ch>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Brendan Gallagher <bredan@bywatersolutions.com>
16.05.x
Jonathan Druart 8 years ago
committed by Brendan Gallagher
parent
commit
cb912decef
  1. 7
      t/db_dependent/Suggestions.t

7
t/db_dependent/Suggestions.t

@ -28,7 +28,7 @@ use Koha::Library;
use Koha::Libraries;
use DateTime::Duration;
use Test::More tests => 105;
use Test::More tests => 106;
use Test::Warn;
BEGIN {
@ -303,6 +303,11 @@ $search_suggestion = SearchSuggestion({
STATUS => $mod_suggestion3->{STATUS},
});
is( @$search_suggestion, 1, 'SearchSuggestion returns the correct number of suggestions' );
$search_suggestion = SearchSuggestion({
STATUS => q||
});
is( @$search_suggestion, 0, 'SearchSuggestion should not return all suggestions if we want the suggestions with a STATUS=""' );
$search_suggestion = SearchSuggestion({
STATUS => 'REJECTED',
});

Loading…
Cancel
Save