File Coverage

lib/Moose/Meta/Attribute/Custom/Trait/Indexed.pm
Criterion Covered Total %
statement 8 9 88.8
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 12 14 85.7


line stmt bran cond sub pod time code
1 7     7   1780 use 5.006; # our, pragmas
  7         16  
2 7     7   25 use strict;
  7         9  
  7         118  
3 7     7   29 use warnings;
  7         7  
  7         602  
4              
5             package Moose::Meta::Attribute::Custom::Trait::Indexed;
6              
7             our $VERSION = '2.000000';
8              
9             # ABSTRACT: Registration Node for the Indexed Trait.
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13             sub register_implementation {
14 0     0 1   return 'MooseX::AttributeIndexes::Meta::Attribute::Trait::Indexed';
15             }
16              
17             1;
18              
19             __END__
20              
21             =pod
22              
23             =encoding UTF-8
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 2.000000
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) 2014 by Kent Fredric <kentfredric@gmail.com>.
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