plan tests => 10;
my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
my manager = $builder->build_object({ class => "Koha::Patrons" });
my $manager = $builder->build_object({ class => "Koha::Patrons" });
t::lib::Mocks::mock_userenv({ patron => $manager,branchcode => $manager->branchcode });
my $item = $builder->build_sample_item(
itype => $itemtype->itemtype,
};
my $item = $builder->build_object( { class => 'Koha::Items', value => $item_info } );
my ( @patrons, @holds );
for my $i ( 0 .. 2 ) {
-