File Coverage

/tmp/5ms7p7G_Hx
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             use Mite::Shim;
2 3     3   9801098 has number =>
  3         11  
  3         44  
3             is => 'ro',
4             builder => sub { rand() };
5 2     2   10  
6             use Mite::Shim;
7             has random_thing =>
8 3     3   346 is => 'lazy',
  3         7  
  3         15  
9             builder => sub { RandomThing->new },
10             handles => [ 'number' ];
11 2     2   8  
12             1;