From a9af2dfaaf48a1cc40bf48cf5f8a7c823bbb0e2b Mon Sep 17 00:00:00 2001 From: Connor Dewar Date: Tue, 17 Jan 2012 15:40:25 +1300 Subject: [PATCH] Bug 5327 Added unit tests for C4/Reports.pm --- t/Reports.t | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/t/Reports.t b/t/Reports.t index 667cb8c..c848b73 100755 --- a/t/Reports.t +++ b/t/Reports.t @@ -6,9 +6,12 @@ use strict; use warnings; -use Test::More tests => 1; +use Test::More tests => 2; BEGIN { use_ok('C4::Reports'); } + +ok(GetDelimiterChoices(),"Testing getting delimeter choices"); #Not testing the value of the output just that it returns something. + -- 1.7.4.1