use Modern::Perl;
use Test::More tests => 5;
use Test::More;
use MARC::Record;
use_ok('Koha::SearchEngine::Elasticsearch::Indexer');
eval { require Koha::SearchEngine::Elasticsearch::Indexer; };
if ( $@ ) {
my $es_dep_msg = 'Required module Catmandu::Importer::MARC is not installed';
plan( skip_all => $es_dep_msg );
}
else {
plan tests => 5;
my $indexer;
ok(
-