bug 5327 updated test file
[koha.git] / t / lib / KohaTest / ItemType.pm
1 package KohaTest::ItemType;
2 use base qw( KohaTest );
3
4 use strict;
5 use warnings;
6
7 use Test::More;
8
9 use C4::ItemType;
10 sub testing_class { 'C4::ItemType' };
11
12
13 sub methods : Test( 1 ) {
14     my $self = shift;
15     my @methods = qw( 
16                     new
17                     all
18                 );
19     
20     can_ok( $self->testing_class, @methods );    
21 }
22
23 1;