File Coverage

/tmp/zpGq1he3d5
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             use Mite::Shim;
2 2     2   4182437 has foo =>
  2         9  
  2         37  
3             is => 'rw',
4             default => "gp1 foo default";
5              
6             use Mite::Shim;
7             extends 'xGP1';
8 2     2   421 has bar =>
  2         4  
  2         8  
9             is => 'rw',
10             default => "p1 bar default";
11              
12             use Mite::Shim;
13             extends 'xGP1';
14             has foo =>
15 2     2   221 is => 'rw',
  2         6  
  2         7  
16             default => "p2 foo default";
17              
18             use Mite::Shim;
19             extends 'xP1', 'xP2';
20             has bar =>
21             is => 'rw';
22 2     2   229  
  2         3  
  2         10  
23             1;