Bug 8435: (follow-up) handle lack of userenv gracefully
[koha.git] / t / Ris.t
diff --git a/t/Ris.t b/t/Ris.t
index 30157e4..b4126c5 100755 (executable)
--- 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');