The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Test::Difflet - testing with difflet

SYNOPSIS

difflet_is_deeply( { "foo" => [ 1, 2, 3 ] }, { "foo" => [ 4, 2, 3 ] } );
# or override is_deeply
use Test::Difflet qw/is_deeply/;
is_deeply( { "foo" => [ 1, 2, 3 ] }, { "foo" => [ 4, 2, 3 ] }, 'test name');

DESCRIPTION

This is a drop-in replacement for Test::More::is_deeply. You can use Data::Difflet for testing very easily.

SEE ALSO

Data::Difflet