From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

Catmandu::Importer::Null - Null importer used for testing purposes

SYNOPSIS

# From the command line
catmandu convert Null --fix 'add_field(foo,bar)'
# creates { "foo": "bar" }
# In a Perl script
my $importer = Catmandu->importer('Null');
my $n = $importer->each(sub {
my $hashref = $_[0];
# ...
});

DESCRIPTION

The importer generates one empty record and then exists. This importer can be used to test fix functions, generating a single record.

METHODS

Every Catmandu::Importer is a Catmandu::Iterable all its methods are inherited.

SEE ALSO

Catmandu::Exporter::Null