File Coverage

/tmp/4z41t7fRmw
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package MyTest4;
2 4     4   15207996 use Mite::Shim;
  4         65  
  4         246  
3             has on_read => (
4             is => 'rw',
5             clone => 1,
6             clone_on_read => 1,
7             clone_on_write => 0,
8             );
9             has on_write => (
10             is => 'rw',
11             clone => 1,
12             clone_on_read => 0,
13             clone_on_write => 1,
14             );
15             has on_both => (
16             is => 'rw',
17             clone => 1,
18             clone_on_read => 1,
19             clone_on_write => 1,
20             );
21             has on_neither => (
22             is => 'rw',
23             clone => 1,
24             clone_on_read => 0,
25             clone_on_write => 0,
26             );
27             1;