From bcf0c513fbc4ad11d825f64462b61631c3caa27b Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Tue, 4 Sep 2007 03:13:50 -0500 Subject: [PATCH] Test for C4::Branch Just skeletal at this stage, actual tests need to be added Signed-off-by: Chris Cormack --- t/Branch.t | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 t/Branch.t 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"; -- 2.39.2