File Coverage

blib/lib/Stepford/Types.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Stepford::Types;
2              
3 43     43   3861474 use strict;
  43         98  
  43         1190  
4 43     43   202 use warnings;
  43         67  
  43         1547  
5              
6             our $VERSION = '0.006000';
7              
8 43     43   19973 use MooseX::Types::Common::Numeric;
  43         4649311  
  43         258  
9 43     43   98995 use MooseX::Types::Moose;
  43         108  
  43         193  
10 43     43   211148 use MooseX::Types::Path::Class;
  43         12958930  
  43         547  
11              
12 43     43   40276 use parent 'MooseX::Types::Combine';
  43         102  
  43         516  
13              
14             __PACKAGE__->provide_types_from(
15             qw(
16             MooseX::Types::Common::Numeric
17             MooseX::Types::Moose
18             MooseX::Types::Path::Class
19             Stepford::Types::Internal
20             )
21             );
22              
23             1;
24              
25             # ABSTRACT: Type library used in Stepford classes/roles
26              
27             __END__
28              
29             =pod
30              
31             =encoding UTF-8
32              
33             =head1 NAME
34              
35             Stepford::Types - Type library used in Stepford classes/roles
36              
37             =head1 VERSION
38              
39             version 0.006000
40              
41             =head1 SUPPORT
42              
43             Bugs may be submitted through L<https://github.com/maxmind/Stepford/issues>.
44              
45             =head1 AUTHOR
46              
47             Dave Rolsky <drolsky@maxmind.com>
48              
49             =head1 COPYRIGHT AND LICENSE
50              
51             This software is copyright (c) 2014 - 2019 by MaxMind, Inc.
52              
53             This is free software; you can redistribute it and/or modify it under
54             the same terms as the Perl 5 programming language system itself.
55              
56             =cut