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 62     62   227 use strict;
  62         68  
  62         1449  
4 62     62   193 use warnings;
  62         62  
  62         1215  
5              
6 62     62   204 use Mouse::Util::TypeConstraints;
  62         647  
  62         307  
7              
8             subtype 'Inf',
9             as 'Str',
10             where { $_ eq 'inf' };
11              
12             1;