From c45b18251e7d384219a2adf234b4fab734fbaab3 Mon Sep 17 00:00:00 2001 From: Daniel Grobani Date: Fri, 29 Oct 2010 22:44:27 -0400 Subject: [PATCH] unit test stub for Z3950.pm Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack --- t/Z3950.t | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 t/Z3950.t diff --git a/t/Z3950.t b/t/Z3950.t new file mode 100644 index 0000000000..4fb4c37917 --- /dev/null +++ b/t/Z3950.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::Z3950'); +} + -- 2.39.2