From 76eeeb0deb4fada0c5a7602b3ae78df116c4c291 Mon Sep 17 00:00:00 2001 From: Alex Arnaud Date: Thu, 1 Mar 2018 13:23:44 +0000 Subject: [PATCH] Bug 19873 - Add unit tests Signed-off-by: Brendan Gallagher --- t/db_dependent/Search.t | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/Search.t b/t/db_dependent/Search.t index a1ec226..15a885d 100644 --- a/t/db_dependent/Search.t +++ b/t/db_dependent/Search.t @@ -619,6 +619,11 @@ if ( $indexing_mode eq 'dom' ) { is( $query, "an:42 and ( ( allrecords,AlwaysMatches:'' not onloan,AlwaysMatches:'') and (lost,st-numeric=0) )", 'buildQuery should add the available part to the query if requested with ccl' ); is( $query_desc, 'an:42', 'buildQuery should remove the available part from the query' ); + ( $error, $query, $simple_query, $query_cgi, + $query_desc, $limit, $limit_cgi, $limit_desc, + $query_type ) = buildQuery([], [ 0 ], [ 'su,phr' ], [], [], 0, 'en'); + is($query, 'su,phr=0 ', 'buildQuery should keep 0 value'); + # Let's see what happens when we pass bad data into these routines. # We have to catch warnings since we're not very good about returning errors. @@ -970,12 +975,12 @@ sub run_unimarc_search_tests { } subtest 'MARC21 + GRS-1' => sub { - plan tests => 109; + plan tests => 110; run_marc21_search_tests('grs1'); }; subtest 'MARC21 + DOM' => sub { - plan tests => 109; + plan tests => 110; run_marc21_search_tests('dom'); }; -- 2.1.4