Lines 216-222
subtest '->is_paged and ->pager tests' => sub {
Link Here
|
216 |
$schema->storage->txn_begin; |
216 |
$schema->storage->txn_begin; |
217 |
|
217 |
|
218 |
# Delete existing patrons |
218 |
# Delete existing patrons |
219 |
Koha::Patrons->search->delete; |
219 |
Koha::Checkouts->delete; |
|
|
220 |
Koha::Patrons->delete; |
220 |
# Create 10 patrons |
221 |
# Create 10 patrons |
221 |
foreach (1..10) { |
222 |
foreach (1..10) { |
222 |
$builder->build_object({ class => 'Koha::Patrons' }); |
223 |
$builder->build_object({ class => 'Koha::Patrons' }); |
223 |
- |
|
|