Memoize-Lift
view release on metacpan or search on metacpan
t/hint_in.t view on Meta::CPAN
use warnings;
use strict;
package Foo;
use Test::More tests => 3;
BEGIN { use_ok "Memoize::Lift", qw(lift); }
sub cc() { lift(__PACKAGE__) }
is cc(), "Foo";
is cc(), "Foo";
1;
( run in 3.175 seconds using v1.01-cache-2.11-cpan-b301d465b3d )