Skip to content

Instantly share code, notes, and snippets.

@sugyan
Forked from hokaccha/test.t
Created June 30, 2010 08:10
Show Gist options
  • Save sugyan/458381 to your computer and use it in GitHub Desktop.
Save sugyan/458381 to your computer and use it in GitHub Desktop.
use Test::More;
$hoge = {
foo => foo(),
bar => 'bar',
};
is $hoge->{foo} => 'bar';
sub foo {
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment