|
Lines 405-411
subtest do_checkin => sub {
Link Here
|
| 405 |
$ci_transaction->do_checkin( $library->branchcode, undef ); |
405 |
$ci_transaction->do_checkin( $library->branchcode, undef ); |
| 406 |
is( $patron->checkouts->count, 0, 'Checkin should have been done successfully' ); |
406 |
is( $patron->checkouts->count, 0, 'Checkin should have been done successfully' ); |
| 407 |
|
407 |
|
| 408 |
my $result = $ci_transaction->do_checkin( $library2->branchcode, undef ); |
408 |
my $result = $ci_transaction->do_checkin( $library2->branchcode, undef ); |
| 409 |
my $transfer = $item->get_transfer; |
409 |
my $transfer = $item->get_transfer; |
| 410 |
is( $ci_transaction->alert_type, '04', "Checkin of item no issued at another branch succeeds" ); |
410 |
is( $ci_transaction->alert_type, '04', "Checkin of item no issued at another branch succeeds" ); |
| 411 |
is_deeply( |
411 |
is_deeply( |
| 412 |
- |
|
|