Bug 22368: Make sure the tests will always pass
[koha.git] / t / Ris.t
diff --git a/t/Ris.t b/t/Ris.t
index 30157e4..c11b1f5 100755 (executable)
--- a/t/Ris.t
+++ b/t/Ris.t
@@ -3,12 +3,17 @@
 # This Koha test module is a stub!  
 # Add more tests here!!!
 
-use strict;
-use warnings;
+use Modern::Perl;
 
-use Test::More tests => 1;
+use t::lib::Mocks;
+use Test::More tests => 4;
 
 BEGIN {
-        use_ok('C4::Ris');
+    use_ok('C4::Ris');
 }
+t::lib::Mocks::mock_preference('marcflavour', 'MARC21');
+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');