File Coverage

blib/lib/MooseX/AttributeIndexes/Meta/Role.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 21 21 100.0


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