Bugzilla – Attachment 179296 Details for
Bug 39313
OpacTrustedCheckout self-checkout modal not checking out valid barcode
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39313: Unit test for passing valid item object to CanBookBeIssued
Bug-39313-Unit-test-for-passing-valid-item-object-.patch (text/plain), 1.66 KB, created by
Aleisha Amohia
on 2025-03-14 00:09:22 UTC
(
hide
)
Description:
Bug 39313: Unit test for passing valid item object to CanBookBeIssued
Filename:
MIME Type:
Creator:
Aleisha Amohia
Created:
2025-03-14 00:09:22 UTC
Size:
1.66 KB
patch
obsolete
>From 6d43fb8c32626d54d016a9b89158c3fac6203f1f Mon Sep 17 00:00:00 2001 >From: Aleisha Amohia <aleishaamohia@hotmail.com> >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 >--- > 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 101857d3b79..4406b55a5ab 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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 39313
:
179191
|
179192
|
179196
|
179296
|
179324
|
179327
|
179328