View | Details | Raw Unified | Return to bug 22812
Collapse All | Expand All

(-)a/t/db_dependent/Serials.t (-2 / +3 lines)
Lines 18-24 use Koha::DateUtils; Link Here
18
use Koha::Acquisition::Booksellers;
18
use Koha::Acquisition::Booksellers;
19
use t::lib::Mocks;
19
use t::lib::Mocks;
20
use t::lib::TestBuilder;
20
use t::lib::TestBuilder;
21
use Test::More tests => 46;
21
use Test::More tests => 47;
22
22
23
BEGIN {
23
BEGIN {
24
    use_ok('C4::Serials');
24
    use_ok('C4::Serials');
Lines 262-267 subtest 'test_updateClaim' => sub { Link Here
262
};
262
};
263
263
264
is(C4::Serials::check_routing(), undef, 'test checking route');
264
is(C4::Serials::check_routing(), undef, 'test checking route');
265
is(C4::Serials::check_routing($subscriptionid), 0, 'There should not have any routing list for the subscription');
266
# TODO really test this check_routing subroutine
265
267
266
is(C4::Serials::addroutingmember(),undef, 'test adding route member');
268
is(C4::Serials::addroutingmember(),undef, 'test adding route member');
267
269
268
- 

Return to bug 22812