File Coverage

blib/lib/Mason/Test/Overrides/Component/StrictMoose.pm
Criterion Covered Total %
statement 25 25 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 0 1 0.0
total 33 34 97.0


line stmt bran cond sub pod time code
1             package Mason::Test::Overrides::Component::StrictMoose;
2             $Mason::Test::Overrides::Component::StrictMoose::VERSION = '2.24';
3 1     1   436 use Moose::Exporter;
  1         1  
  1         6  
4 1     1   41 use MooseX::StrictConstructor ();
  1         1  
  1         10  
5 1     1   3 use strict;
  1         1  
  1         16  
6 1     1   4 use warnings;
  1         1  
  1         23  
7 1     1   4 use base qw(Mason::Component::Moose);
  1         1  
  1         76  
8 1     1   5 use strict;
  1         1  
  1         28  
9 1     1   3 use warnings;
  1         2  
  1         85  
10              
11             Moose::Exporter->setup_import_methods();
12              
13             sub init_meta {
14 1     1 0 79 my $class = shift;
15 1         4 my %params = @_;
16 1         6 $class->SUPER::init_meta(@_);
17 1         14 MooseX::StrictConstructor->import( { into => $params{for_class} } );
18             }
19              
20             1;