File Coverage

blib/lib/MooseX/UndefTolerant/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             package MooseX::UndefTolerant::Composite;
2              
3             our $VERSION = '0.21';
4              
5 1     1   1886 use Moose::Role;
  1         1  
  1         6  
6              
7             around apply_params => sub {
8             my $orig = shift;
9             my $self = shift;
10              
11             $self->$orig(@_);
12              
13             $self = Moose::Util::MetaRole::apply_metaroles(
14             for => $self,
15             role_metaroles => {
16             application_to_class =>
17             ['MooseX::UndefTolerant::ApplicationToClass'],
18             application_to_role =>
19             ['MooseX::UndefTolerant::ApplicationToRole'],
20             },
21             );
22              
23             return $self;
24             };
25              
26 1     1   3475 no Moose::Role;
  1         1  
  1         5  
27              
28             1;