Scroll to navigation

Catmandu::Importer::Mock(3pm) User Contributed Perl Documentation Catmandu::Importer::Mock(3pm)

NAME

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

SYNOPSIS

    use Catmandu;
    my $importer = Catmandu->importer('Mock');
    my $n = $importer->each(sub {
        my $hashref = $_[0];
        # ...
    });

CONFIGURATION

Read input from a local file given by its path. Alternatively a scalar reference can be passed to read from a string.
Read input from an IO::Handle. If not specified, Catmandu::Util::io is used to create the input stream from the "file" argument or by using STDIN.
Binmode of the input stream "fh". Set to ":utf8" by default.
An ARRAY of one or more fixes or file scripts to be applied to imported items.
Number of items. If not set, an endless stream is imported.

METHODS

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

SEE ALSO

Catmandu::Exporter::Null

2023-03-03 perl v5.36.0