Skip to content

Instantly share code, notes, and snippets.

@alecchen
Created April 26, 2013 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alecchen/5467467 to your computer and use it in GitHub Desktop.
Save alecchen/5467467 to your computer and use it in GitHub Desktop.
use Test::More qw(no_plan);
use Test::Differences::Color;
eq_or_diff('same text', 'same text', 'test description');
my @array1 = qw(
foo
bar
);
my @array2 = qw(
food
bar
);
eq_or_diff(\@array1, \@array2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment