File Coverage

/tmp/5nUFJtF3eV
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package YourTest1;
2 2     2   5790768 use Mite::Shim -role;
  2         13  
  2         47  
3             has foo => ( is => 'ro' );
4              
5             package YourTest2;
6 2     2   494 use Mite::Shim -role;
  2         4  
  2         11  
7             with 'YourTest1';
8              
9             package YourTest3;
10 2     2   225 use Mite::Shim;
  2         4  
  2         10  
11             with 'YourTest2';
12              
13             1;