Lines 12-18
use YAML;
Link Here
|
12 |
use C4::Debug; |
12 |
use C4::Debug; |
13 |
require C4::Context; |
13 |
require C4::Context; |
14 |
|
14 |
|
15 |
use Test::More tests => 232; |
15 |
use Test::More tests => 4; |
16 |
use Test::MockModule; |
16 |
use Test::MockModule; |
17 |
use MARC::Record; |
17 |
use MARC::Record; |
18 |
use File::Spec; |
18 |
use File::Spec; |
Lines 869-878
sub run_unimarc_search_tests {
Link Here
|
869 |
cleanup(); |
869 |
cleanup(); |
870 |
} |
870 |
} |
871 |
|
871 |
|
872 |
run_marc21_search_tests('grs1'); |
872 |
subtest 'MARC21 + GRS-1' => sub { |
873 |
run_marc21_search_tests('dom'); |
873 |
plan tests => 103; |
874 |
|
874 |
run_marc21_search_tests('grs1'); |
875 |
run_unimarc_search_tests('grs1'); |
875 |
}; |
876 |
run_unimarc_search_tests('dom'); |
876 |
|
|
|
877 |
subtest 'MARC21 + DOM' => sub { |
878 |
plan tests => 103; |
879 |
run_marc21_search_tests('dom'); |
880 |
}; |
881 |
|
882 |
subtest 'UNIMARC + GRS-1' => sub { |
883 |
plan tests => 13; |
884 |
run_unimarc_search_tests('grs1'); |
885 |
}; |
886 |
|
887 |
subtest 'UNIMARC + DOM' => sub { |
888 |
plan tests => 13; |
889 |
run_unimarc_search_tests('dom'); |
890 |
}; |
877 |
|
891 |
|
878 |
1; |
892 |
1; |
879 |
- |
|
|