From 12f9aa973d855fb1f058fdcbe68a0e84dfbd77ae Mon Sep 17 00:00:00 2001 From: Liz Rea Date: Fri, 29 Oct 2010 22:44:26 -0400 Subject: [PATCH] Adding a simple test for Service.pm At the advisement of the great Chris Cormack. (thanks for the lesson) Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack --- t/Service.t | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 t/Service.t diff --git a/t/Service.t b/t/Service.t new file mode 100755 index 0000000000..497cc1bc7f --- /dev/null +++ b/t/Service.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::Service'); +} + -- 2.20.1