File Coverage

/tmp/bynTEc2xfV
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod n/a
total 10 11 90.9


line stmt bran cond sub pod time code
1             package MyTest1;
2 2     2   3980549 use Mite::Shim -role;
  2         7  
  2         40  
3 1     1   24 sub abc { return 123 }
4       0     sub xyz {}
5              
6             package MyTest2;
7 2     2   282 use Mite::Shim;
  2         4  
  2         9  
8             with 'MyTest1' => {
9             -excludes => [ 'xyz' ],
10             -alias => { abc => 'def' },
11             };
12              
13             1;