File Coverage

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


line stmt bran cond sub pod time code
1             package Foo;
2 2     2   5073740 use Mite::Shim;
  2         6  
  2         20  
3             has 'things' =>
4             is => 'rw',
5             default => 42;
6              
7             package Bar;
8 2     2   222 use Mite::Shim;
  2         5  
  2         10  
9             extends 'Foo';
10             has 'stuff' =>
11             is => 'rw',
12             default => 23;
13             1;