File Coverage

/tmp/fRmwS3ywj8
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package MyTest;
2 2     2   5008707 use Mite::Shim;
  2         16  
  2         28  
3             has foo =>
4             is => 'rw',
5             isa => 'Int',
6             local_writer => 1;
7              
8             package MyTest2;
9 2     2   223 use Mite::Shim qw( guard );
  2         8  
  2         10  
10             extends 'MyTest';
11             has '+foo' => predicate => 1;
12             1;