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   228 use strict;
  63         74  
  63         1514  
4 63     63   244 use warnings;
  63         68  
  63         1239  
5              
6 63     63   204 use Mouse::Util::TypeConstraints;
  63         647  
  63         320  
7              
8             subtype 'Inf',
9             as 'Str',
10             where { $_ eq 'inf' };
11              
12             1;