Lines 666-672
ok(MARC::Record::new_from_xml($results_hashref->{biblioserver}->{RECORDS}->[0],'
Link Here
|
666 |
( $error, $query, $simple_query, $query_cgi, |
666 |
( $error, $query, $simple_query, $query_cgi, |
667 |
$query_desc, $limit, $limit_cgi, $limit_desc, |
667 |
$query_desc, $limit, $limit_cgi, $limit_desc, |
668 |
$query_type ) = buildQuery([], [ 0 ], [ 'su,phr' ], [], [], 0, 'en'); |
668 |
$query_type ) = buildQuery([], [ 0 ], [ 'su,phr' ], [], [], 0, 'en'); |
669 |
is($query, 'su,phr=(rk=(0)) ', 'buildQuery should keep 0 value'); |
669 |
is($query, 'su,phr=(rk=(0)) ', 'buildQuery should keep 0 value in query'); |
|
|
670 |
is($query_cgi, 'idx=su%2Cphr&q=0', 'buildQuery should keep 0 value in query_cgi'); |
671 |
is($query_desc, 'su,phr: 0', 'buildQuery should keep 0 value in query_desc'); |
670 |
|
672 |
|
671 |
# Bug 23086 |
673 |
# Bug 23086 |
672 |
( $error, $query, $simple_query, $query_cgi, |
674 |
( $error, $query, $simple_query, $query_cgi, |
Lines 912-918
sub run_unimarc_search_tests {
Link Here
|
912 |
} |
914 |
} |
913 |
|
915 |
|
914 |
subtest 'MARC21 + DOM' => sub { |
916 |
subtest 'MARC21 + DOM' => sub { |
915 |
plan tests => 88; |
917 |
plan tests => 90; |
916 |
run_marc21_search_tests(); |
918 |
run_marc21_search_tests(); |
917 |
}; |
919 |
}; |
918 |
|
920 |
|
919 |
- |
|
|