File Coverage

blib/lib/Method/Signatures/Types.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Method::Signatures::Types;
2              
3 63     63   207 use strict;
  63         65  
  63         1361  
4 63     63   182 use warnings;
  63         63  
  63         1113  
5              
6 63     63   205 use Mouse::Util::TypeConstraints;
  63         560  
  63         283  
7              
8             subtype 'Inf',
9             as 'Str',
10             where { $_ eq 'inf' };
11              
12             1;