Lines 404-410
is($new_count, $hold_notice_count + 1, 'patron not notified a second time (bug 1
Link Here
|
404 |
t::lib::Mocks::mock_preference('IndependentBranches', 0); |
404 |
t::lib::Mocks::mock_preference('IndependentBranches', 0); |
405 |
$item = Koha::Items->find($item->itemnumber); |
405 |
$item = Koha::Items->find($item->itemnumber); |
406 |
is( |
406 |
is( |
407 |
$item->safe_delete, |
407 |
@{$item->safe_delete->messages}[0]->message, |
408 |
'book_reserved', |
408 |
'book_reserved', |
409 |
'item that is captured to fill a hold cannot be deleted', |
409 |
'item that is captured to fill a hold cannot be deleted', |
410 |
); |
410 |
); |
411 |
- |
|
|