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