|
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 => 212; |
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 836-845
sub run_unimarc_search_tests {
Link Here
|
| 836 |
cleanup(); |
836 |
cleanup(); |
| 837 |
} |
837 |
} |
| 838 |
|
838 |
|
| 839 |
run_marc21_search_tests('grs1'); |
839 |
subtest 'MARC21 + GRS-1' => sub { |
| 840 |
run_marc21_search_tests('dom'); |
840 |
plan tests => 97; |
| 841 |
|
841 |
run_marc21_search_tests('grs1'); |
| 842 |
run_unimarc_search_tests('grs1'); |
842 |
}; |
| 843 |
run_unimarc_search_tests('dom'); |
843 |
|
|
|
844 |
subtest 'MARC21 + DOM' => sub { |
| 845 |
plan tests => 97; |
| 846 |
run_marc21_search_tests('dom'); |
| 847 |
}; |
| 848 |
|
| 849 |
subtest 'UNIMARC + GRS-1' => sub { |
| 850 |
plan tests => 13; |
| 851 |
run_unimarc_search_tests('grs1'); |
| 852 |
}; |
| 853 |
|
| 854 |
subtest 'UNIMARC + DOM' => sub { |
| 855 |
plan tests => 13; |
| 856 |
run_unimarc_search_tests('dom'); |
| 857 |
}; |
| 844 |
|
858 |
|
| 845 |
1; |
859 |
1; |
| 846 |
- |
|
|