Lines 66-71
subtest 'after_hold_create() hook tests' => sub {
Link Here
|
66 |
my $test_plugin = Test::MockModule->new('Koha::Plugin::Test'); |
66 |
my $test_plugin = Test::MockModule->new('Koha::Plugin::Test'); |
67 |
$test_plugin->mock( 'after_item_action', undef ); |
67 |
$test_plugin->mock( 'after_item_action', undef ); |
68 |
$test_plugin->mock( 'after_biblio_action', undef ); |
68 |
$test_plugin->mock( 'after_biblio_action', undef ); |
|
|
69 |
$test_plugin->mock( 'item_barcode_transform', undef ); |
69 |
|
70 |
|
70 |
my $biblio = $builder->build_sample_biblio(); |
71 |
my $biblio = $builder->build_sample_biblio(); |
71 |
my $item_1 = $builder->build_sample_item( { biblionumber => $biblio->biblionumber } ); |
72 |
my $item_1 = $builder->build_sample_item( { biblionumber => $biblio->biblionumber } ); |
72 |
- |
|
|