Entries from 2013-02-06 to 1 day

Test::Deep::Cond

soh335/Test-Deep-Cond · GitHub cmp_deeply( { hoge => 3, }, { hoge => code(sub { my $val = shift; 2 < $val and $val < 4 }), }, ); こう書くのはだるいなーと思ってたので use Test::Deep::Cond; cmp_deeply( { hoge => 3, }, { hoge => cond { 2 < $_…