File Coverage

/tmp/3ywj8oNL4R
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package MyTest3;
2 3     3   10031228 use Mite::Shim;
  3         25  
  3         119  
3 3     3   759 use Storable ();
  3         16  
  3         403  
4             has foo => (
5             is => 'ro',
6             clone => 'cloner_for_%s',
7             );
8             sub cloner_for_foo {
9 4     4   14 my ( $self, $attrname, $value ) = @_;
10 4         336 Storable::dclone( $value );
11             }
12             1;