0f82b21204
to test 1. run prove t/Print.t 2. apply patch 3. run prove t/Print.t Notice more tests are done Signed-off-by: Roman Amor <romanwilton@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> UT passes, also passes koha-qa.pl Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Tests pass :) Signed-off-by: Galen Charlton <gmc@esilibrary.com>
15 lines
200 B
Perl
Executable file
15 lines
200 B
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
# This Koha test module is a stub!
|
|
# Add more tests here!!!
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Test::More tests => 2;
|
|
|
|
BEGIN {
|
|
use_ok('C4::Print');
|
|
}
|
|
ok( !NetworkPrint(""));
|
|
|