File Coverage

/tmp/bNyrSsGBRy
Criterion Covered Total %
statement 6 10 60.0
branch n/a
condition n/a
subroutine 2 4 50.0
pod n/a
total 8 14 57.1


line stmt bran cond sub pod time code
1             use Mite::Shim -all;
2 2     2   3817010  
  2         13  
  2         51  
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             use Mite::Shim -all;
12             extends 'MyTest1';
13              
14 2     2   540 signature_for '+foo';
  2         4  
  2         9  
15              
16             my ( $self, $arg ) = @_;
17             return [ $arg->xxx, $arg->yyy ];
18             }
19              
20 0     0     1;