From d15790d9c56dfc1dc3bf3d3cbde452c936aa530c Mon Sep 17 00:00:00 2001 From: Magnus Enger Date: Sat, 30 Oct 2010 00:42:59 -0400 Subject: [PATCH] Bug 5327: Add basic unit tests to some C4 modules Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack --- t/Utils.t | 14 ++++++++++++++ t/XISBN.t | 14 ++++++++++++++ t/XSLT.t | 14 ++++++++++++++ 3 files changed, 42 insertions(+) create mode 100755 t/Utils.t create mode 100755 t/XISBN.t create mode 100755 t/XSLT.t diff --git a/t/Utils.t b/t/Utils.t new file mode 100755 index 0000000000..01fb10b674 --- /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 index 0000000000..9e08efbca1 --- /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 index 0000000000..1f78eb9d83 --- /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'); +} + -- 2.39.2