Bug 5337: EAN management : Adds ean for various searches
[koha.git] / t / db_dependent / lib / KohaTest / Print.pm
1 package KohaTest::Print;
2 use base qw( KohaTest );
3
4 use strict;
5 use warnings;
6
7 use Test::More;
8
9 use C4::Print;
10 sub testing_class { 'C4::Print' };
11
12
13 sub methods : Test( 1 ) {
14     my $self = shift;
15     my @methods = qw( NetworkPrint );
16     
17     can_ok( $self->testing_class, @methods );    
18 }
19
20 1;
21