File Coverage

blib/lib/Fey/ORM/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 Fey::ORM::Types;
2              
3 13     13   68 use strict;
  13         55  
  13         424  
4 13     13   66 use warnings;
  13         23  
  13         440  
5              
6 13     13   63 use base 'MooseX::Types::Combine';
  13         19  
  13         3353  
7              
8             our $VERSION = '0.47';
9              
10             __PACKAGE__->provide_types_from(
11             qw( MooseX::Types::Moose Fey::ORM::Types::Internal ));
12              
13             1;
14              
15             # ABSTRACT: Types for use in Fey::ORM
16              
17             __END__
18              
19             =pod
20              
21             =head1 NAME
22              
23             Fey::ORM::Types - Types for use in Fey::ORM
24              
25             =head1 VERSION
26              
27             version 0.47
28              
29             =head1 DESCRIPTION
30              
31             This module defines a whole bunch of types used by the Fey::ORM core
32             classes. None of these types are documented for external use at the present,
33             though that could change in the future.
34              
35             =head1 BUGS
36              
37             See L<Fey::ORM> for details on how to report bugs.
38              
39             =head1 AUTHOR
40              
41             Dave Rolsky <autarch@urth.org>
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             This software is copyright (c) 2011 - 2015 by Dave Rolsky.
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut