File Coverage

/tmp/0hyQfmG9ji
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             use Mite::Shim;
2 2     2   4514304 use Storable ();
  2         9  
  2         33  
3 2     2   306 has foo => (
  2         5  
  2         190  
4             is => 'ro',
5             clone => sub {
6             my ( $self, $attrname, $value ) = @_;
7 2     2   12 Storable::dclone( $value );
8 2         84 },
9             );
10             1;