bcf0c513fb
Just skeletal at this stage, actual tests need to be added Signed-off-by: Chris Cormack <crc@liblime.com>
5 lines
120 B
Perl
5 lines
120 B
Perl
BEGIN { $| = 1; print "1..1\n"; }
|
|
END {print "not ok 1\n" unless $loaded;}
|
|
use C4::Branch;
|
|
$loaded = 1;
|
|
print "ok 1\n";
|