X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=t%2FRis.t;h=b4126c5eb87eb311be072f0034ade8a50b128dbc;hb=011d3c9728df26d98976ddb256470cfdd54e1361;hp=30157e45443dd1e98ccdecdab199c30753c90b01;hpb=c190d93a12c2741b8d4539b7bee175257da815c8;p=koha_fer diff --git a/t/Ris.t b/t/Ris.t index 30157e4544..b4126c5eb8 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');