From cbd42bdc7ce7b20ef2397e7cb425518b246f5b2e Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 10 Mar 2021 10:33:23 -0500 Subject: [PATCH] Bug 27907: Add unit test Signed-off-by: Christopher Kellermeyer - Altadena Library District Signed-off-by: Martin Renvoize Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 7a2ed601e4bc4d1a2c4bd6845e3f617d0c652297) Signed-off-by: Fridolin Somers --- 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 38acd504df..7b595bcf87 100755 --- a/t/db_dependent/SIP/Transaction.t +++ b/t/db_dependent/SIP/Transaction.t @@ -515,7 +515,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' } ); @@ -573,9 +573,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.20.1