Koha/t/ClassSortRoutine_Generic.t
Connor Dewar 995485e574 Bug 5327 added unit tests for C4/ClassSortRoutine/Generic
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
2012-01-17 15:31:55 +01:00

24 lines
502 B
Perl
Executable file

#!/usr/bin/perl
#
# This Koha test module is a stub!
# Add more tests here!!!
use strict;
use warnings;
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");