The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Test2::Tools::DataFrame - Tools for verifying Data::Frame data frames

VERSION

version 0.0055

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

Data::Frame, Test2::Suite

AUTHORS

  • Zakariyya Mughal <zmughal@cpan.org>

  • Stephan Loyd <sloyd@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014, 2019-2020 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.