File Coverage

blib/lib/Mus.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Mus;
2              
3 2     2   178843 use 5.008_005;
  2         20  
4             our $VERSION = '0.01';
5              
6 2     2   13 use strictures 2;
  2         16  
  2         83  
7 2     2   910 use Import::Into;
  2         2675  
  2         45  
8              
9 2     2   947 use Mu ();
  2         14834  
  2         47  
10 2     2   811 use MooX::StrictConstructor ();
  2         14372  
  2         129  
11              
12             sub import {
13 2     2   18 my $caller = caller;
14 2         44 $_->import::into( $caller ) for qw/ Mu MooX::StrictConstructor /;
15             }
16              
17             1;
18             __END__