File Coverage

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


line stmt bran cond sub pod time code
1 2     2   2694 use 5.006; # our, pragmas
  2         5  
2 2     2   8 use strict;
  2         2  
  2         35  
3 2     2   6 use warnings;
  2         2  
  2         128  
4              
5             package MooseX::AttributeIndexes::Meta::Role;
6              
7             our $VERSION = '2.000001';
8              
9             # ABSTRACT: MetaRole for AttributeIndexes.
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 2     2   369 use Moose::Role;
  2         305045  
  2         12  
14              
15             sub composition_class_roles {
16 1     1 1 3913 return 'MooseX::AttributeIndexes::Meta::Role::Composite';
17             }
18              
19 2     2   6955 no Moose::Role;
  2         3  
  2         7  
20              
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             MooseX::AttributeIndexes::Meta::Role - MetaRole for AttributeIndexes.
32              
33             =head1 VERSION
34              
35             version 2.000001
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) 2017 by Kent Fredric <kentfredric@gmail.com>.
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