Catmandu::Importer::Null(3pm) | User Contributed Perl Documentation | Catmandu::Importer::Null(3pm) |
Catmandu::Importer::Null - Null importer used for testing purposes
# From the command line catmandu convert Null --fix 'add_field(foo,bar)' # creates { "foo": "bar" } # In a Perl script use Catmandu; my $importer = Catmandu->importer('Null'); my $n = $importer->each(sub { my $hashref = $_[0]; # ... });
The importer generates one empty record and then exists. This importer can be used to test fix functions, generating a single record.
Every Catmandu::Importer is a Catmandu::Iterable all its methods are inherited.
Catmandu::Exporter::Null
2023-03-03 | perl v5.36.0 |