File Coverage

blib/lib/Moose/Meta/Attribute/Custom/Trait/Indexed.pm
Criterion Covered Total %
statement 7 8 87.5
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 11 13 84.6


line stmt bran cond sub pod time code
1 4     4   1720 use strict;
  4         9  
  4         260  
2 4     4   28 use warnings;
  4         96  
  4         535  
3              
4             package Moose::Meta::Attribute::Custom::Trait::Indexed;
5             BEGIN {
6 4     4   270 $Moose::Meta::Attribute::Custom::Trait::Indexed::AUTHORITY = 'cpan:KENTNL';
7             }
8             {
9             $Moose::Meta::Attribute::Custom::Trait::Indexed::VERSION = '1.0.3';
10             }
11              
12             # ABSTRACT: Registration Node for the Indexed Trait.
13              
14              
15             sub register_implementation {
16 0     0 1   return 'MooseX::AttributeIndexes::Meta::Attribute::Trait::Indexed';
17             }
18              
19             1;
20              
21             __END__
22              
23             =pod
24              
25             =head1 NAME
26              
27             Moose::Meta::Attribute::Custom::Trait::Indexed - Registration Node for the Indexed Trait.
28              
29             =head1 VERSION
30              
31             version 1.0.3
32              
33             =head1 METHODS
34              
35             =head2 C<register_implementation>
36              
37             Associates the Indexed trait with MX::AI
38              
39             =head1 AUTHORS
40              
41             =over 4
42              
43             =item *
44              
45             Kent Fredric <kentnl@cpan.org>
46              
47             =item *
48              
49             Jesse Luehrs <doy@cpan.org>
50              
51             =back
52              
53             =head1 COPYRIGHT AND LICENSE
54              
55             This software is copyright (c) 2013 by Kent Fredric.
56              
57             This is free software; you can redistribute it and/or modify it under
58             the same terms as the Perl 5 programming language system itself.
59              
60             =cut