Bug 5327 shifting database dependent modules and scripts to t/db_dependent
[koha.git] / t / lib / KohaTest / Heading.pm
diff --git a/t/lib/KohaTest/Heading.pm b/t/lib/KohaTest/Heading.pm
deleted file mode 100644 (file)
index 4f781a2..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package KohaTest::Heading;
-use base qw( KohaTest );
-
-use strict;
-use warnings;
-
-use Test::More;
-
-use C4::Heading;
-sub testing_class { 'C4::Heading' };
-
-
-sub methods : Test( 1 ) {
-    my $self = shift;
-    my @methods = qw( 
-                    new_from_bib_field
-                    display_form
-                    authorities
-                    preferred_authorities
-                    _query_limiters
-                    _marc_format_handler
-                );
-    
-    can_ok( $self->testing_class, @methods );    
-}
-
-1;