File Coverage

blib/lib/Class/Cache/Test/Lazy.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 0 1 0.0
total 7 8 87.5


line stmt bran cond sub pod time code
1             package Class::Cache::Test::Lazy;
2              
3 1     1   6 use Carp qw(cluck);
  1         1  
  1         88  
4              
5             sub new {
6 1     1 0 259 cluck "HEYHEYHEY! I was created To-Day!";
7              
8 1         8 bless {}, __PACKAGE__;
9             }
10              
11             1;