File Coverage

/tmp/NBoLMBZGxX
Criterion Covered Total %
statement 3 5 60.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod n/a
total 4 7 57.1


line stmt bran cond sub pod time code
1             package MyTest3;
2 3     3   7865084 use Mite::Shim -all;
  3         26  
  3         119  
3              
4             signature_for foo => (
5             named => [ xxx => "Int", yyy => "Bool" ],
6             named_to_list => true,
7             );
8              
9             sub foo {
10 0     0     my ( $self, @args ) = @_;
11 0           return \@args;
12             }
13             1;