Merge remote branch 'kc/new/enh/bug_5921' into kcmaster
[koha.git] / t / db_dependent / lib / KohaTest / Log.pm
1 package KohaTest::Log;
2 use base qw( KohaTest );
3
4 use strict;
5 use warnings;
6
7 use Test::More;
8
9 use C4::Log;
10 sub testing_class { 'C4::Log' };
11
12
13 sub methods : Test( 1 ) {
14     my $self = shift;
15     my @methods = qw( logaction 
16                        GetLogStatus 
17                        displaylog 
18                        GetLogs 
19                 );
20     
21     can_ok( $self->testing_class, @methods );    
22 }
23
24 1;
25