愛と勇気と缶ビール

ふしぎとぼくらはなにをしたらよいか

2011-10-18から1日間の記事一覧

続Sub::Spy

結局こんなインタフェースにした。 use Sub::Spy qw/spy inspect/; my $subref = { $_[0] + $_[1]; }; my $spy = spy($subref); $spy->(1, 2); my $i = inspect($spy); $i->called; # 1 (true) $i->called_once; # 1 (true) $i->called_twice; # 0 (false) $…