File Coverage

/tmp/3aHZSVhezp
Criterion Covered Total %
statement 3 6 50.0
branch n/a
condition n/a
subroutine 1 3 33.3
pod n/a
total 4 9 44.4


line stmt bran cond sub pod time code
1             use Mite::Shim -all;
2 4     4   9186157  
  4         23  
  4         111  
3             signature_for foo => (
4             named => [ xxx => "Int", yyy => "Bool" ],
5             );
6              
7             my ( $self, $arg ) = @_;
8             return [ $arg->xxx, $arg->yyy ];
9 0     0     }
10 0            
11             signature_for bar => (
12             named => [ xxx => "Num", yyy => "Object" ],
13             );
14              
15             die();
16             }
17             1;