Koha/t/Serials.t
Henri-Damien LAURENT 63a8c5bc9d MT3801 followup : Cannot claim for issues
was missing an opening (
Adding test script

Signed-off-by: Colin Campbell <colin.campbell@ptfs-europe.com>
2010-12-15 13:30:47 +00:00

10 lines
218 B
Perl

#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use_ok('C4::Serials');
my $supplierlist=eval{GetSuppliersWithLateIssues()};
ok(length($@)==0,"No SQL problem in GetSuppliersWithLateIssues");
done_testing();