File Coverage

blib/lib/Fey/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::Types;
2              
3 29     29   168 use strict;
  29         44  
  29         1153  
4 29     29   146 use warnings;
  29         36  
  29         1014  
5              
6 29     29   716 use base 'MooseX::Types::Combine';
  29         40  
  29         14313  
7              
8             our $VERSION = '0.43';
9              
10             __PACKAGE__->provide_types_from(
11             qw( MooseX::Types::Moose Fey::Types::Internal ));
12              
13             1;
14              
15             # ABSTRACT: Types for use in Fey
16              
17             __END__
18              
19             =pod
20              
21             =head1 NAME
22              
23             Fey::Types - Types for use in Fey
24              
25             =head1 VERSION
26              
27             version 0.43
28              
29             =head1 DESCRIPTION
30              
31             This module defines a whole bunch of types used by the Fey core
32             classes. None of these types are documented for external use at the
33             present, though that could change in the future.
34              
35             =head1 BUGS
36              
37             See L<Fey> 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, licensed under:
48              
49             The Artistic License 2.0 (GPL Compatible)
50              
51             =cut