File Coverage

/tmp/O2w0hyQfmG
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             use Mite::Shim;
2 2     2   5075512 has xyz =>
  2         9  
  2         42  
3             is => 'ro';
4              
5             use Mite::Shim;
6             has foo =>
7 2     2   341 is => 'rw',
  2         5  
  2         9  
8             required => 1,
9             handles => {
10             xyz => 'xyz',
11             bar => 'xyz',
12             };
13              
14             use Mite::Shim;
15             has foo =>
16             is => 'rw',
17 2     2   215 required => 1,
  2         6  
  2         7  
18             handles => {
19             '%s_xyz' => 'xyz',
20             '%s_bar' => 'xyz',
21             };
22              
23             1;