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

(-)a/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t (-2 / +1 lines)
Lines 60-66 is( $issuingimpossible->{DEBT_GUARANTEES}, undef, "Patron can check out item" ); Link Here
60
60
61
manualinvoice( $guarantee->{borrowernumber}, undef, undef, 'L', 10.00 );
61
manualinvoice( $guarantee->{borrowernumber}, undef, undef, 'L', 10.00 );
62
( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->{barcode} );
62
( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->{barcode} );
63
is( $issuingimpossible->{DEBT_GUARANTEES}, '10.00', "Patron cannot check out item due to debt for guarantee" );
63
is( $issuingimpossible->{DEBT_GUARANTEES} == 10.00, 1, "Patron cannot check out item due to debt for guarantee" );
64
64
65
$schema->storage->txn_rollback;
65
$schema->storage->txn_rollback;
66
66
67
- 

Return to bug 16405