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

(-)a/t/Matcher.t (-2 / +3 lines)
Lines 24-30 use Module::Load::Conditional qw/check_install/; Link Here
24
24
25
BEGIN {
25
BEGIN {
26
    if ( check_install( module => 'Test::DBIx::Class' ) ) {
26
    if ( check_install( module => 'Test::DBIx::Class' ) ) {
27
        plan tests => 11;
27
        plan tests => 12;
28
    } else {
28
    } else {
29
        plan skip_all => "Need Test::DBIx::Class"
29
        plan skip_all => "Need Test::DBIx::Class"
30
    }
30
    }
Lines 82-85 $testmatcher->description('match on ISSN'); Link Here
82
82
83
is( $testmatcher->description(), 'match on ISSN', 'testing code accessor' );
83
is( $testmatcher->description(), 'match on ISSN', 'testing code accessor' );
84
84
85
is( C4::Matcher::_normalize('(OCoLC)20329436'), '(OCoLC)20329436', 'C4::Matcher::_normalize does not mangle standard OCLC fields' );
86
85
1;
87
1;
86
- 

Return to bug 14238