From fe9752df60a43757fde9218bf5ecaab804f24992 Mon Sep 17 00:00:00 2001 From: Sam Sanders Date: Wed, 18 Jan 2012 15:38:52 +1300 Subject: [PATCH] [SIGNED-OFF]bug 5327 added unit tests for C4/Ris.pm Signed-off-by: Chris Hall --- t/Ris.t | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/t/Ris.t b/t/Ris.t index 30157e4..b4126c5 100755 --- a/t/Ris.t +++ b/t/Ris.t @@ -6,9 +6,17 @@ use strict; use warnings; -use Test::More tests => 1; +use Test::More tests => 6; BEGIN { use_ok('C4::Ris'); } +is(C4::Ris::print_typetag(),undef,'test printing typetag'); + +is(C4::Ris::print_title(),undef, 'test printing title when print_title is nil'); + +is(C4::Ris::print_stitle(),undef, 'test printing info from series title field when its nil'); + +ok((C4::Ris::charconv('hello world'))[0] eq 'hello world', 'testing that it returns what you entered'); +ok(C4::Ris::charconv() == 0, 'testing when charconv is nil'); -- 1.7.4.1