Bugzilla – Attachment 119989 Details for
Bug 27907
Add support for circulation status 2 ( on order )
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27907: Add unit test
Bug-27907-Add-unit-test.patch (text/plain), 1.68 KB, created by
Kyle M Hall (khall)
on 2021-04-22 10:28:12 UTC
(
hide
)
Description:
Bug 27907: Add unit test
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2021-04-22 10:28:12 UTC
Size:
1.68 KB
patch
obsolete
>From 1d6a3c50e176af10eaba6e6ce7319decc251a908 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Wed, 10 Mar 2021 10:33:23 -0500 >Subject: [PATCH] Bug 27907: Add unit test > >Signed-off-by: Christopher Kellermeyer - Altadena Library District <ckellermeyer@altadenalibrary.org> >--- > t/db_dependent/SIP/Transaction.t | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/SIP/Transaction.t b/t/db_dependent/SIP/Transaction.t >index 8bdb77b079..b4faa3c401 100755 >--- a/t/db_dependent/SIP/Transaction.t >+++ b/t/db_dependent/SIP/Transaction.t >@@ -525,7 +525,7 @@ subtest checkin_withdrawn => sub { > }; > > subtest item_circulation_status => sub { >- plan tests => 5; >+ plan tests => 6; > > my $library = $builder->build_object( { class => 'Koha::Libraries' } ); > my $library2 = $builder->build_object( { class => 'Koha::Libraries' } ); >@@ -583,9 +583,18 @@ subtest item_circulation_status => sub { > is( $status, '12', "Item circulation status is lost" ); > $item->itemlost(0)->store(); > >+ my $location = $item->location; > $item->location("CART")->store(); > $sip_item = C4::SIP::ILS::Item->new( $item->barcode ); > $status = $sip_item->sip_circulation_status; > is( $status, '09', "Item circulation status is waiting to be re-shelved" ); >+ $item->location($location)->store(); >+ >+ my $nfl = $item->notforloan; >+ $item->notforloan(-1)->store(); >+ $sip_item = C4::SIP::ILS::Item->new( $item->barcode ); >+ $status = $sip_item->sip_circulation_status; >+ is( $status, '02', "Item circulation status is on order" ); >+ $item->notforloan($nfl)->store(); > }; > $schema->storage->txn_rollback; >-- >2.24.3 (Apple Git-128)
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 27907
:
118029
|
118030
|
119989
|
119990
|
122723
|
122724