Test for C4::Branch
authorChris Cormack <crc@liblime.com>
Tue, 4 Sep 2007 08:13:50 +0000 (03:13 -0500)
committerChris Cormack <crc@liblime.com>
Tue, 4 Sep 2007 08:15:03 +0000 (03:15 -0500)
Just skeletal at this stage, actual tests need to be added

Signed-off-by: Chris Cormack <crc@liblime.com>
t/Branch.t [new file with mode: 0644]

diff --git a/t/Branch.t b/t/Branch.t
new file mode 100644 (file)
index 0000000..4d81390
--- /dev/null
@@ -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";