X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=t%2FPrint.t;h=1a05304e4d22179ad57f56670ccf0b981c670608;hb=fab0b80ddbcb8528c3ce661942c933eabc91533b;hp=60bd85a0bc7d5077e5e6d634de27759778a07749;hpb=77618f43cf589c5dddcf5ad13f8afda51d1a1129;p=koha.git diff --git a/t/Print.t b/t/Print.t old mode 100644 new mode 100755 index 60bd85a0bc..1a05304e4d --- a/t/Print.t +++ b/t/Print.t @@ -1,5 +1,14 @@ -BEGIN { $| = 1; print "1..1\n"; } -END {print "not ok 1\n" unless $loaded;} -use C4::Print; -$loaded = 1; -print "ok 1\n"; +#!/usr/bin/perl +# +# This Koha test module is a stub! +# Add more tests here!!! + +use strict; +use warnings; + +use Test::More tests => 1; + +BEGIN { + use_ok('C4::Print'); +} +