Bug 5327: Add basic unit tests to some C4 modules
authorMagnus Enger <magnus@enger.priv.no>
Sat, 30 Oct 2010 04:42:59 +0000 (00:42 -0400)
committerChris Cormack <chrisc@catalyst.net.nz>
Sat, 30 Oct 2010 07:22:30 +0000 (20:22 +1300)
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
t/Utils.t [new file with mode: 0755]
t/XISBN.t [new file with mode: 0755]
t/XSLT.t [new file with mode: 0755]

diff --git a/t/Utils.t b/t/Utils.t
new file mode 100755 (executable)
index 0000000..01fb10b
--- /dev/null
+++ b/t/Utils.t
@@ -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::Utils');
+}
+
diff --git a/t/XISBN.t b/t/XISBN.t
new file mode 100755 (executable)
index 0000000..9e08efb
--- /dev/null
+++ b/t/XISBN.t
@@ -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::XISBN');
+}
+
diff --git a/t/XSLT.t b/t/XSLT.t
new file mode 100755 (executable)
index 0000000..1f78eb9
--- /dev/null
+++ b/t/XSLT.t
@@ -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::XSLT');
+}
+