NAME
Test2::Tools::DataFrame - Tools for verifying Data::Frame data frames
VERSION
version 0.006003
SYNOPSIS
use Test2::Tools::DataFrame;
# Functions are exported by default.
# Ensure something is a data frame.
dataframe_ok($df);
# Compare two data frames.
dataframe_is($got, $expected, 'Same data frame.');
FUNCTIONS
dataframe_ok($thing, $name)
Checks that the given $thing
is a Data::Frame object.
dataframe_is($got, $exp, $name);
Checks that data frame $got
is same as $exp
.
DESCRIPTION
This module contains tools for verifying Data::Frame data frame objects.
SEE ALSO
AUTHORS
Zakariyya Mughal <zmughal@cpan.org>
Stephan Loyd <sloyd@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014, 2019-2022 by Zakariyya Mughal, Stephan Loyd.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.