Bug 22433: Add debug statement to Transaction.t
Hard to know what's going on here without more info. Adding this output may help to investigate more. Test plan: Make sure the tests still pass If it fails, please paste the output!! Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
3ef397125f
commit
63a8e27f2e
1 changed files with 3 additions and 2 deletions
|
@ -86,8 +86,9 @@ subtest fill_holds_at_checkout => sub {
|
|||
is( ref $transaction, "C4::SIP::ILS::Transaction::Checkout", "New transaction created" );
|
||||
is( $transaction->patron( $sip_patron ), $sip_patron, "Patron assigned to transaction" );
|
||||
is( $transaction->item( $sip_item ), $sip_item, "Item assigned to transaction" );
|
||||
$transaction->do_checkout();
|
||||
is( $bib->holds->count(), 1, "Bib has 1 holds remaining");
|
||||
my $checkout = $transaction->do_checkout();
|
||||
use Data::Printer colored => 1; # Temporary debug statement
|
||||
is( $bib->holds->count(), 1, "Bib has 1 holds remaining") or diag p $checkout;
|
||||
|
||||
t::lib::Mocks::mock_preference('itemBarcodeInputFilter', 'whitespace');
|
||||
$sip_item = C4::SIP::ILS::Item->new( ' barcode 4 test ');
|
||||
|
|
Loading…
Reference in a new issue