From: Chris Cormack Date: Tue, 4 Sep 2007 08:13:50 +0000 (-0500) Subject: Test for C4::Branch X-Git-Tag: v3.00.00-alpha~1812 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=bcf0c513fbc4ad11d825f64462b61631c3caa27b;p=srvgit Test for C4::Branch Just skeletal at this stage, actual tests need to be added Signed-off-by: Chris Cormack --- diff --git a/t/Branch.t b/t/Branch.t new file mode 100644 index 0000000000..4d8139031d --- /dev/null +++ b/t/Branch.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n"; } +END {print "not ok 1\n" unless $loaded;} +use C4::Branch; +$loaded = 1; +print "ok 1\n";