The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catmandu::Exporter::Mock - a expoter that doesn't export anything

SYNOPSIS

    # From the commandline
    $ catmandu convert JSON --fix myfixes to Mock < /tmp/data.json

    # From Perl

    use Catmandu::Exporter::Mock;

    # Print to STDOUT
    my $exporter = Catmandu::Exporter::Mock->new(fix => 'myfix.txt');

    $exporter->add_many($arrayref);
    $exporter->add_many($iterator);
    $exporter->add_many(sub { });

    $exporter->add($hashref);

    printf "exported %d objects\n" , $exporter->count;

    # Get an array ref of all records exported
    my $data = $exporter->as_arrayref;
    

DESCRIPTION

This exporter exports nothing and can be used as in situations where you e.g. export data from a fix. Other the Null exporter, the Mock exporter will keep an internal array of all the records exported which can be retrieved with the 'as_arrayref' method.

SEE ALSO

Catmandu::Exporter::Null