Lines 63-69
my $patron_category = $builder->build(
Link Here
|
63 |
{ |
63 |
{ |
64 |
source => 'Category', |
64 |
source => 'Category', |
65 |
value => { |
65 |
value => { |
66 |
category_type => 'P', |
66 |
category_type => 'P', |
|
|
67 |
noissuescharge => undef, |
67 |
} |
68 |
} |
68 |
} |
69 |
} |
69 |
); |
70 |
); |
Lines 176-181
is( $message_log->[0], 'too many checkout', 'Checkout limit reached message disp
Link Here
|
176 |
t::lib::Mocks::mock_preference( 'AllFinesNeedOverride', 0 ); |
177 |
t::lib::Mocks::mock_preference( 'AllFinesNeedOverride', 0 ); |
177 |
t::lib::Mocks::mock_preference( 'AllowFineOverride', 1 ); |
178 |
t::lib::Mocks::mock_preference( 'AllowFineOverride', 1 ); |
178 |
t::lib::Mocks::mock_preference( 'noissuescharge', 5 ); |
179 |
t::lib::Mocks::mock_preference( 'noissuescharge', 5 ); |
|
|
180 |
t::lib::Mocks::mock_preference( 'IssuingInProcess', 0 ); |
179 |
|
181 |
|
180 |
$dbh->do(q|DELETE FROM circulation_rules|); |
182 |
$dbh->do(q|DELETE FROM circulation_rules|); |
181 |
|
183 |
|
182 |
- |
|
|