Adding a simple test for Service.pm
authorLiz Rea <lrea@nekls.org>
Sat, 30 Oct 2010 02:44:26 +0000 (22:44 -0400)
committerChris Cormack <chrisc@catalyst.net.nz>
Sat, 30 Oct 2010 07:12:47 +0000 (20:12 +1300)
At the advisement of the great Chris Cormack. (thanks for the lesson)

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
t/Service.t [new file with mode: 0755]

diff --git a/t/Service.t b/t/Service.t
new file mode 100755 (executable)
index 0000000..497cc1b
--- /dev/null
@@ -0,0 +1,14 @@
+#!/usr/bin/perl
+#
+# This Koha test module is a stub!  
+# Add more tests here!!!
+
+use strict;
+use warnings;
+
+use Test::More tests => 1;
+
+BEGIN {
+        use_ok('C4::Service');
+}
+