File Coverage

/tmp/Mp4vuWLlNS
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 2     2   4035090 has number =>
  2         14  
  2         54  
3             is => 'ro',
4             builder => sub { rand() };
5 1     1   7  
6             use Mite::Shim;
7             has random_thing =>
8 2     2   444 is => 'lazy',
  2         6  
  2         16  
9             builder => sub { RandomThing->new },
10             handles => [ 'number' ];
11 1     1   17  
12             1;