File Coverage

blib/lib/Moonshine/Bootstrap/v3.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 Moonshine::Bootstrap::v3;
2              
3 4     4   736061 use strict;
  4         9  
  4         173  
4 4     4   22 use warnings;
  4         8  
  4         281  
5              
6 4     4   1994 use Moonshine::Magic;
  4         503442  
  4         32  
7 4     4   2159 use Moonshine::Util;
  4         12  
  4         44  
8 4     4   4579 use Module::Find;
  4         8828  
  4         308  
9              
10             extends (
11             'Moonshine::Bootstrap::Component',
12             );
13              
14             BEGIN {
15             with (
16             ( map {
17             $_
18             } findsubmod 'Moonshine::Bootstrap::v3' )
19 4     4   5667 );
20             }
21              
22             1;
23              
24             __END__