bug 3303: removed references to news_channels*
[koha.git] / t / lib / KohaTest / NewsChannels.pm
1 package KohaTest::NewsChannels;
2 use base qw( KohaTest );
3
4 use strict;
5 use warnings;
6
7 use Test::More;
8
9 use C4::NewsChannels;
10 sub testing_class { 'C4::NewsChannels' };
11
12
13 sub methods : Test( 1 ) {
14     my $self = shift;
15     my @methods = qw(
16                       add_opac_new 
17                       upd_opac_new 
18                       del_opac_new 
19                       get_opac_new 
20                       get_opac_news 
21                       GetNewsToDisplay 
22                 );
23     
24     can_ok( $self->testing_class, @methods );    
25 }
26
27 1;
28