From cea1ef27208b06286719b6c9b676913ad3456cb7 Mon Sep 17 00:00:00 2001 From: Nate Curulla Date: Sun, 31 Oct 2010 05:15:22 -0400 Subject: [PATCH] Bug 5327: Add unit test for ItemType.pm Signed-off-by: Ian Walls Signed-off-by: Chris Cormack --- t/ItemType.t | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 t/ItemType.t diff --git a/t/ItemType.t b/t/ItemType.t new file mode 100755 index 0000000000..de7a4e2d28 --- /dev/null +++ b/t/ItemType.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::ItemType'); +} + -- 2.39.5