File Coverage

blib/lib/Fey/Types.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Fey::Types;
2             BEGIN {
3 2     2   44 $Fey::Types::VERSION = '0.40';
4             }
5              
6 2     2   10 use strict;
  2         4  
  2         57  
7 2     2   12 use warnings;
  2         3  
  2         57  
8              
9 2     2   11 use base 'MooseX::Types::Combine';
  2         12  
  2         1656  
10              
11             __PACKAGE__->provide_types_from(
12             qw( MooseX::Types::Moose Fey::Types::Internal )
13             );
14              
15             1;
16              
17             # ABSTRACT: Types for use in Fey
18              
19              
20              
21             =pod
22              
23             =head1 NAME
24              
25             Fey::Types - Types for use in Fey
26              
27             =head1 VERSION
28              
29             version 0.40
30              
31             =head1 DESCRIPTION
32              
33             This module defines a whole bunch of types used by the Fey core
34             classes. None of these types are documented for external use at the
35             present, though that could change in the future.
36              
37             =head1 BUGS
38              
39             See L<Fey> for details on how to report bugs.
40              
41             =head1 AUTHOR
42              
43             Dave Rolsky <autarch@urth.org>
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is Copyright (c) 2011 by Dave Rolsky.
48              
49             This is free software, licensed under:
50              
51             The Artistic License 2.0 (GPL Compatible)
52              
53             =cut
54              
55              
56             __END__
57