File Coverage

/tmp/0dVHCKUbrH
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod n/a
total 8 11 72.7


line stmt bran cond sub pod time code
1             package MyTest::R;
2 2     2   4378353 use Mite::Shim -role, -all;
  2         10  
  2         43  
3              
4             signature_for foo => (
5             pos => [ "Int", "Bool" ],
6             );
7              
8             package MyTest;
9 2     2   199 use Mite::Shim;
  2         3  
  2         8  
10             with 'MyTest::R';
11              
12             sub foo {
13 0     0     my ( $self, $int, $bool ) = @_;
14 0           return [ $int, $bool ];
15             }
16             1;