Tests for New Modules
[koha_fer] / t / lib / KohaTest / ItemCirculationAlertPreference.pm
1 package KohaTest::ItemCirculationAlertPreference;
2 use base qw( KohaTest );
3
4 use strict;
5 use warnings;
6
7 use Test::More;
8
9 use C4::ItemCirculationAlertPreference;
10 sub testing_class { 'C4::ItemCirculationAlertPreference' };
11
12
13 sub methods : Test( 1 ) {
14     my $self = shift;
15     my @methods = qw( 
16                     new
17                     create
18                     delete
19                     is_enabled_for
20                     find
21                     grid
22                 );
23     
24     can_ok( $self->testing_class, @methods );    
25 }
26
27 1;