File Coverage
/tmp/4RD3UeTP8Z |
|
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 Thingy; |
2
|
2
|
|
|
2
|
|
5205765
|
use Mite::Shim; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
54
|
|
3
|
|
|
|
|
|
|
has xyz => |
4
|
|
|
|
|
|
|
is => 'ro'; |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
package MyTest; |
7
|
2
|
|
|
2
|
|
381
|
use Mite::Shim; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
8
|
|
8
|
|
|
|
|
|
|
has foo => |
9
|
|
|
|
|
|
|
is => 'rw', |
10
|
|
|
|
|
|
|
required => 1, |
11
|
|
|
|
|
|
|
handles => { |
12
|
|
|
|
|
|
|
xyz => 'xyz', |
13
|
|
|
|
|
|
|
bar => 'xyz', |
14
|
|
|
|
|
|
|
}; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
package MyTest2; |
17
|
2
|
|
|
2
|
|
193
|
use Mite::Shim; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
10
|
|
18
|
|
|
|
|
|
|
has foo => |
19
|
|
|
|
|
|
|
is => 'rw', |
20
|
|
|
|
|
|
|
required => 1, |
21
|
|
|
|
|
|
|
handles => { |
22
|
|
|
|
|
|
|
'%s_xyz' => 'xyz', |
23
|
|
|
|
|
|
|
'%s_bar' => 'xyz', |
24
|
|
|
|
|
|
|
}; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
1; |