File Coverage

/tmp/_30Nwkjdl7
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package GP1;
2 2     2   5069313 use Mite::Shim;
  2         7  
  2         39  
3             has foo =>
4             is => 'ro',
5             default => 23;
6              
7             package P1;
8 2     2   238 use Mite::Shim;
  2         4  
  2         10  
9             extends 'GP1';
10              
11             package C1;
12 2     2   168 use Mite::Shim;
  2         7  
  2         14  
13             extends 'P1';
14             has "+foo" =>
15             default => "child default";
16              
17             1;