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.23';
3 1     1   505 use Moose::Exporter;
  1         2  
  1         8  
4 1     1   54 use MooseX::StrictConstructor ();
  1         2  
  1         12  
5 1     1   4 use strict;
  1         1  
  1         18  
6 1     1   5 use warnings;
  1         2  
  1         22  
7 1     1   4 use base qw(Mason::Component::Moose);
  1         2  
  1         97  
8 1     1   5 use strict;
  1         1  
  1         20  
9 1     1   4 use warnings;
  1         1  
  1         100  
10              
11             Moose::Exporter->setup_import_methods();
12              
13             sub init_meta {
14 1     1 0 110 my $class = shift;
15 1         5 my %params = @_;
16 1         8 $class->SUPER::init_meta(@_);
17 1         10 MooseX::StrictConstructor->import( { into => $params{for_class} } );
18             }
19              
20             1;