File Coverage

/tmp/E0FVuWWVMM
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             use Mite::Shim;
2 5     5   14745591 has on_read => (
  5         14  
  5         85  
3             is => 'rw',
4             clone => 1,
5             clone_on_read => 1,
6             clone_on_write => 0,
7             );
8             has on_write => (
9             is => 'rw',
10             clone => 1,
11             clone_on_read => 0,
12             clone_on_write => 1,
13             );
14             has on_both => (
15             is => 'rw',
16             clone => 1,
17             clone_on_read => 1,
18             clone_on_write => 1,
19             );
20             has on_neither => (
21             is => 'rw',
22             clone => 1,
23             clone_on_read => 0,
24             clone_on_write => 0,
25             );
26             1;