Bug 8435: (follow-up) handle lack of userenv gracefully
[koha.git] / t / ClassSortRoutine_Generic.t
index d627259..128006b 100755 (executable)
@@ -6,9 +6,19 @@
 use strict;
 use warnings;
 
-use Test::More tests => 1;
+use Test::More tests => 3;
 
 BEGIN {
         use_ok('C4::ClassSortRoutine::Generic');
 }
 
+my $cn_class = "My class ";
+my $cn_item = " hellO";
+
+my $cn_sort = C4::ClassSortRoutine::Generic::get_class_sort_key($cn_class, $cn_item);
+
+is($cn_sort,"MY_CLASS_HELLO","testing cnsort");
+
+$cn_sort = C4::ClassSortRoutine::Generic::get_class_sort_key(undef, undef);
+
+is($cn_sort,"","Testing blank cnsort");