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

(-)a/t/db_dependent/Circulation/Returns.t (-1 / +11 lines)
Lines 47-52 my $schema = Koha::Database->schema; Link Here
47
$schema->storage->txn_begin;
47
$schema->storage->txn_begin;
48
48
49
my $builder = t::lib::TestBuilder->new();
49
my $builder = t::lib::TestBuilder->new();
50
Koha::IssuingRules->search->delete;
51
my $rule = Koha::IssuingRule->new(
52
    {
53
        categorycode => '*',
54
        itemtype     => '*',
55
        branchcode   => '*',
56
        maxissueqty  => 99,
57
        issuelength  => 1,
58
    }
59
);
60
$rule->store();
50
61
51
subtest "InProcessingToShelvingCart tests" => sub {
62
subtest "InProcessingToShelvingCart tests" => sub {
52
63
53
- 

Return to bug 18651