From: spartaness Date: Mon, 17 Jan 2011 21:57:31 +0000 (+1300) Subject: Bug 5327 Starting Unit Tests for Auth.pm X-Git-Tag: html_template_pro~479^2 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=3df717479cd7e19fef2d6d18300636391f1d2b5b;hp=81f9c4976c171aae6e7f630dc8eb27a3e5424bb0;p=koha-ffzg.git Bug 5327 Starting Unit Tests for Auth.pm Signed-off-by: Chris Cormack --- diff --git a/t/Auth.t b/t/Auth.t new file mode 100644 index 0000000000..08b684963c --- /dev/null +++ b/t/Auth.t @@ -0,0 +1,15 @@ +#!/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::Auth'); +} + +