File Coverage

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