|
Lines 160-169
subtest 'Display circulation table correctly' => sub {
Link Here
|
| 160 |
); |
160 |
); |
| 161 |
|
161 |
|
| 162 |
my ( $biblionumber, $biblioitemnumber ) = add_biblio(); |
162 |
my ( $biblionumber, $biblioitemnumber ) = add_biblio(); |
|
|
163 |
my $item_type = $builder->build_object({ class => 'Koha::ItemTypes' }); |
| 163 |
my $item = $builder->build_sample_item( |
164 |
my $item = $builder->build_sample_item( |
| 164 |
{ |
165 |
{ |
| 165 |
biblionumber => $biblionumber, |
166 |
biblionumber => $biblionumber, |
| 166 |
library => $library->branchcode, |
167 |
library => $library->branchcode, |
|
|
168 |
itype => $item_type->itemtype, |
| 167 |
} |
169 |
} |
| 168 |
); |
170 |
); |
| 169 |
my $context = Test::MockModule->new('C4::Context'); |
171 |
my $context = Test::MockModule->new('C4::Context'); |
| 170 |
- |
|
|