Bug 23681: Fix QA issues
[koha-ffzg.git] / t / db_dependent / Heading_MARC21.t
index 0e1f1c9..357d312 100755 (executable)
@@ -6,17 +6,23 @@
 use strict;
 use warnings;
 
-use Test::More tests => 3;
+use Test::More tests => 5;
 use C4::Context;
 
 BEGIN {
-        use_ok('C4::Heading');
+        use_ok('C4::Heading', qw( field new_from_field display_form search_form ));
 }
 
 SKIP: {
     skip "MARC21 heading tests not applicable to UNIMARC", 2 if C4::Context->preference('marcflavour') eq 'UNIMARC';
     my $field = MARC::Field->new( '650', ' ', '0', a => 'Uncles', x => 'Fiction' );
-    my $heading = C4::Heading->new_from_bib_field($field);
+    my $heading = C4::Heading->new_from_field($field);
     is($heading->display_form(), 'Uncles--Fiction', 'Display form generation');
     is($heading->search_form(), 'Uncles generalsubdiv Fiction', 'Search form generation');
+
+    $field = MARC::Field->new( '830', ' ', '4', a => 'The dark is rising ;', v => '3' );
+    $heading = C4::Heading->new_from_field($field);
+    is($heading->display_form(), 'The dark is rising ;', 'Display form generation');
+    is($heading->search_form(), 'The dark is rising', 'Search form generation');
+
 }