repo.or.cz
/
koha.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
MT4009: followup removing systempreferences
[koha.git]
/
t
/
Serials.t
blob
01cf853293049d4cc8f349da4ec38669fb1a72d2
1
#!/usr/bin/perl
2
use
strict
;
3
use
warnings
;
4
5
use
Test
::
More
;
6
7
use_ok
(
'C4::Serials'
);
8
my
$supplierlist
=
eval
{
GetSuppliersWithLateIssues
()};
9
ok
(
length
($
@
)==
0
,
"No SQL problem in GetSuppliersWithLateIssues"
);
10
done_testing
();