File Coverage

blib/lib/MooseX/AttributeIndexes/Meta/Role/Composite.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


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