Data::TableReader::Decoder::Mock - Decoder that returns supplied data without decoding anything
Contents
Attributes
See attributes from parent class: Data::TableReader::Decoder.
datasets
The verbatim data which will be returned by the iterator. This can be an array of tables, or one table
itself. A table must be composed of arrayrefs, and the cells of the table cannot themselves be
arrayrefs.
Copyright And License
This software is copyright (c) 2024 by Michael Conrad.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5
programming language system itself.
perl v5.38.2 2024-06-21 Data::TableReader::Decoder::Mock(3pm)
Name
Data::TableReader::Decoder::Mock - Decoder that returns supplied data without decoding anything
Synopsis
decoder => {
CLASS => 'Mock',
datasets => [
[ # Data Set 0
[ 1, 2, 3, 4, 5 ],
...
],
[ # Data Set 1
[ 1, 2, 3, 4, 5 ],
...
],
]
}
or
decoder => {
CLASS => 'Mock',
table => [
[ 1, 2, 3, 4, 5 ],
...
],
}
This doesn't actually decode anything; it just returns verbatim rows of data from arrayrefs that you
supply. You can provide one or multiple tables. The 'table' constructor parameter is an alias for
"datasets[0]".
Version
version 0.021
