Koha/t/db_dependent/lib/KohaTest/Print.pm
Srdjan 722ca127dd bug_8056: sorted out slip print calls
Signed-off-by: Nicole C. Engard <nengard@bywatersolutions.com>
preference works as expected.

Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
Tested that CircAutoPrintQuickSlip clear the screen still works well
2012-05-28 13:52:39 +02:00

21 lines
295 B
Perl

package KohaTest::Print;
use base qw( KohaTest );
use strict;
use warnings;
use Test::More;
use C4::Print;
sub testing_class { 'C4::Print' };
sub methods : Test( 1 ) {
my $self = shift;
my @methods = qw( NetworkPrint );
can_ok( $self->testing_class, @methods );
}
1;