Test for C4::Branch

Just skeletal at this stage, actual tests need to be added

Signed-off-by: Chris Cormack <crc@liblime.com>
This commit is contained in:
Chris Cormack 2007-09-04 03:13:50 -05:00
parent c85892117e
commit bcf0c513fb

5
t/Branch.t Normal file
View file

@ -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";