Bug 19014: (QA follow-up) Update test for AddReserve change

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Martin Renvoize 2020-02-11 16:40:04 +00:00
parent c2d3a60566
commit c8fbb49000
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -628,9 +628,19 @@ subtest "CanBookBeRenewed tests" => sub {
is( $error, 'auto_too_soon', is( $error, 'auto_too_soon',
'Bug 14101: Cannot renew, renewal is automatic and premature, "No renewal before" = undef (returned code is auto_too_soon)' ); 'Bug 14101: Cannot renew, renewal is automatic and premature, "No renewal before" = undef (returned code is auto_too_soon)' );
AddReserve( AddReserve(
$branch, $reserving_borrowernumber, $biblio->biblionumber, {
$bibitems, $priority, $resdate, $expdate, $notes, branchcode => $branch,
'a title', $item_4->itemnumber, $found borrowernumber => $reserving_borrowernumber,
biblionumber => $biblio->biblionumber,
itemnumber => $bibitems,
priority => $priority,
reservation_date => $resdate,
expiration_date => $expdate,
notes => $notes,
title => 'a title',
itemnumber => $item_4->itemnumber,
found => $found
}
); );
( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber ); ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
is( $renewokay, 0, 'Still should not be able to renew' ); is( $renewokay, 0, 'Still should not be able to renew' );