NAME
Test::Difflet - testing with difflet
SYNOPSIS
use Test::Difflet;
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.