Test::Difflet - testing with difflet
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');
This is a drop-in replacement for Test::More::is_deeply. You can use Data::Difflet for testing very easily.