File Coverage

blib/lib/MooseX/Attribute/Dependent/Meta/Role/Composite.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             #
2             # This file is part of MooseX-Attribute-Dependent
3             #
4             # This software is Copyright (c) 2011 by Moritz Onken.
5             #
6             # This is free software, licensed under:
7             #
8             # The (three-clause) BSD License
9             #
10             package MooseX::Attribute::Dependent::Meta::Role::Composite;
11             {
12             $MooseX::Attribute::Dependent::Meta::Role::Composite::VERSION = '1.1.2';
13             }
14 1     1   2882 use Moose::Role;
  1         2  
  1         9  
15              
16             around apply_params => sub {
17             my $orig = shift;
18             my $self = shift;
19              
20             $self->$orig(@_);
21              
22             $self = Moose::Util::MetaRole::apply_metaroles(
23             for => $self,
24             role_metaroles => {
25             application_to_class => ['MooseX::Attribute::Dependent::Meta::Role::ApplicationToClass'],
26             application_to_role => ['MooseX::Attribute::Dependent::Meta::Role::ApplicationToRole'],
27             },
28             );
29              
30             return $self;
31             };
32              
33 1     1   4797 no Moose::Role;
  1         1  
  1         5  
34              
35             1;
36              
37             __END__
38             =pod
39              
40             =head1 NAME
41              
42             MooseX::Attribute::Dependent::Meta::Role::Composite
43              
44             =head1 VERSION
45              
46             version 1.1.2
47              
48             =head1 AUTHOR
49              
50             Moritz Onken
51              
52             =head1 COPYRIGHT AND LICENSE
53              
54             This software is Copyright (c) 2011 by Moritz Onken.
55              
56             This is free software, licensed under:
57              
58             The (three-clause) BSD License
59              
60             =cut
61