From 384b23b5a1699e2fbe14b6d033fd96b167644aa5 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Fri, 14 Mar 2025 00:08:12 +0000 Subject: [PATCH] Bug 39313: Unit test for passing valid item object to CanBookBeIssued rather than a barcode. Will be tested within previous test plan. Sponsored-by: Reserve Bank of New Zealand Signed-off-by: Owen Leonard --- t/db_dependent/Circulation.t | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t index 101857d3b7..4406b55a5a 100755 --- a/t/db_dependent/Circulation.t +++ b/t/db_dependent/Circulation.t @@ -2401,7 +2401,7 @@ subtest "AllowRenewalIfOtherItemsAvailable tests" => sub { } subtest 'CanBookBeIssued & AllowReturnToBranch' => sub { - plan tests => 26; + plan tests => 27; my $homebranch = $builder->build( { source => 'Branch' } ); my $holdingbranch = $builder->build( { source => 'Branch' } ); @@ -2461,6 +2461,12 @@ subtest 'CanBookBeIssued & AllowReturnToBranch' => sub { keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str( $error, $question, $alerts ) ); + ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, undef, undef, 0, 0, { item => $item } ); + is( + keys(%$error) + keys(%$alerts), 0, + 'There should not be any errors or alerts (impossible) when passing a valid item object rather than a barcode' + . str( $error, $question, $alerts ) + ); is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' ); ## Can be issued from holdingbranch set_userenv($holdingbranch); -- 2.39.5