View | Details | Raw Unified | Return to bug 21962
Collapse All | Expand All

(-)a/t/db_dependent/Search.t (-2 / +6 lines)
Lines 775-780 ok(MARC::Record::new_from_xml($results_hashref->{biblioserver}->{RECORDS}->[0],' Link Here
775
        ['99282477'], 0, 10, '', '', 1
775
        ['99282477'], 0, 10, '', '', 1
776
    );
776
    );
777
    is($count, 1, 'MARC21 authorities: one hit on LC-card-number contains "99282477"');
777
    is($count, 1, 'MARC21 authorities: one hit on LC-card-number contains "99282477"');
778
    ($auths, $count) = SearchAuthorities(
779
        ['all'], ['and'], [''], ['contains'],
780
        ['professional wrestler'], 0, 10, '', '', 1
781
    );
782
    is($count, 1, 'MARC21 authorities: one hit on "all" (entire record) contains "professional wrestler"');
778
783
779
    $UseQueryParser = 1;
784
    $UseQueryParser = 1;
780
785
Lines 974-980 sub run_unimarc_search_tests { Link Here
974
}
979
}
975
980
976
subtest 'MARC21 + DOM' => sub {
981
subtest 'MARC21 + DOM' => sub {
977
    plan tests => 111;
982
    plan tests => 112;
978
    run_marc21_search_tests();
983
    run_marc21_search_tests();
979
};
984
};
980
985
981
- 

Return to bug 21962