Lines 60-63
my @result_tags = map { $_->tag() } $record->field('...');
Link Here
|
60 |
my @sorted_tags = sort @result_tags; |
60 |
my @sorted_tags = sort @result_tags; |
61 |
is_deeply(\@sorted_tags,$expected_tags, "Got the same tags as expected"); |
61 |
is_deeply(\@sorted_tags,$expected_tags, "Got the same tags as expected"); |
62 |
|
62 |
|
|
|
63 |
Koha::Biblio::Metadatas->find({ biblionumber => $biblio->biblionumber })->delete; |
64 |
my $records = Koha::BiblioUtils->get_all_biblios_iterator(); |
65 |
my $next = sub { $records->next }; |
66 |
while ( my $r = $next->() ) {} |
67 |
|
63 |
$schema->storage->txn_rollback(); |
68 |
$schema->storage->txn_rollback(); |
64 |
- |
|
|