File Coverage

test-data/lib/Local/MyOwnMoose.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Local::MyOwnMoose;
2              
3 2     2   18 use strict;
  2         4  
  2         58  
4 2     2   10 use warnings;
  2         4  
  2         51  
5              
6 2     2   10 use Import::Into;
  2         3  
  2         176  
7              
8             sub import {
9 6     6   56 $_->import::into( scalar caller ) for qw( Moose );
10             }
11              
12             1;