File Coverage

/tmp/4rLRJ5T68l
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 6 100.0


line stmt bran cond sub pod time code
1             package Foo;
2 4     4   13759222 use Mite::Shim;
  4         31  
  4         150  
3             has num =>
4             lazy => 1,
5             isa => 'Int',
6             reader => 1,
7             writer => 1,
8             accessor => 1,
9             clearer => 1,
10             predicate => 1,
11 6     6   21 builder => sub { 99 };
12             1;