Lines 274-280
Koha::CirculationRules->set_rules(
Link Here
|
274 |
|
274 |
|
275 |
my ( $reused_itemnumber_1, $reused_itemnumber_2 ); |
275 |
my ( $reused_itemnumber_1, $reused_itemnumber_2 ); |
276 |
subtest "CanBookBeRenewed tests" => sub { |
276 |
subtest "CanBookBeRenewed tests" => sub { |
277 |
plan tests => 77; |
277 |
plan tests => 79; |
278 |
|
278 |
|
279 |
C4::Context->set_preference('ItemsDeniedRenewal',''); |
279 |
C4::Context->set_preference('ItemsDeniedRenewal',''); |
280 |
# Generate test biblio |
280 |
# Generate test biblio |
Lines 1133-1138
subtest "CanBookBeRenewed tests" => sub {
Link Here
|
1133 |
is( $renewokay, 0, 'Cannot renew, 0 renewals allowed'); |
1133 |
is( $renewokay, 0, 'Cannot renew, 0 renewals allowed'); |
1134 |
is( $error, 'too_many', 'Cannot renew, 0 renewals allowed (returned code is too_many)'); |
1134 |
is( $error, 'too_many', 'Cannot renew, 0 renewals allowed (returned code is too_many)'); |
1135 |
|
1135 |
|
|
|
1136 |
# Too many unseen renewals |
1137 |
$dbh->do('UPDATE issuingrules SET unseen_renewals_allowed = 2, renewalsallowed = 10'); |
1138 |
$dbh->do('UPDATE issues SET unseen_renewals = 2 where borrowernumber = ? AND itemnumber = ?', undef, ($renewing_borrowernumber, $item_1->itemnumber)); |
1139 |
( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber); |
1140 |
is( $renewokay, 0, 'Cannot renew, 0 unseen renewals allowed'); |
1141 |
is( $error, 'too_unseen', 'Cannot renew, returned code is too_unseen'); |
1142 |
$dbh->do('UPDATE issuingrules SET norenewalbefore = NULL, renewalsallowed = 0'); |
1143 |
|
1136 |
# Test WhenLostForgiveFine and WhenLostChargeReplacementFee |
1144 |
# Test WhenLostForgiveFine and WhenLostChargeReplacementFee |
1137 |
t::lib::Mocks::mock_preference('WhenLostForgiveFine','1'); |
1145 |
t::lib::Mocks::mock_preference('WhenLostForgiveFine','1'); |
1138 |
t::lib::Mocks::mock_preference('WhenLostChargeReplacementFee','1'); |
1146 |
t::lib::Mocks::mock_preference('WhenLostChargeReplacementFee','1'); |