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   3781587 use strict;
  43         125  
  43         1949  
4 43     43   298 use warnings;
  43         137  
  43         1813  
5              
6             our $VERSION = '0.006001';
7              
8 43     43   21394 use MooseX::Types::Common::Numeric;
  43         5099409  
  43         245  
9 43     43   105117 use MooseX::Types::Moose;
  43         103  
  43         235  
10 43     43   228406 use MooseX::Types::Path::Class;
  43         14196787  
  43         469  
11              
12 43     43   46709 use parent 'MooseX::Types::Combine';
  43         99  
  43         439  
13              
14             __PACKAGE__->provide_types_from( qw(
15             MooseX::Types::Common::Numeric
16             MooseX::Types::Moose
17             MooseX::Types::Path::Class
18             Stepford::Types::Internal
19             ) );
20              
21             1;
22              
23             # ABSTRACT: Type library used in Stepford classes/roles
24              
25             __END__
26              
27             =pod
28              
29             =encoding UTF-8
30              
31             =head1 NAME
32              
33             Stepford::Types - Type library used in Stepford classes/roles
34              
35             =head1 VERSION
36              
37             version 0.006001
38              
39             =head1 SUPPORT
40              
41             Bugs may be submitted through L<https://github.com/maxmind/Stepford/issues>.
42              
43             =head1 AUTHOR
44              
45             Dave Rolsky <drolsky@maxmind.com>
46              
47             =head1 COPYRIGHT AND LICENSE
48              
49             This software is copyright (c) 2014 - 2023 by MaxMind, Inc.
50              
51             This is free software; you can redistribute it and/or modify it under
52             the same terms as the Perl 5 programming language system itself.
53              
54             =cut