File Coverage

lib/Morpheus/Bootstrap/Vital.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 22 23 95.6


line stmt bran cond sub pod time code
1             package Morpheus::Bootstrap::Vital;
2             {
3             $Morpheus::Bootstrap::Vital::VERSION = '0.46';
4             }
5 4     4   25 use strict;
  4         9  
  4         167  
6 4     4   23 use warnings;
  4         12  
  4         130  
7              
8             # ABSTRACT: bootstrap enabling Overrides and Defaults functionality
9              
10 4     4   22 use Morpheus::Overrides;
  4         7  
  4         25  
11 4     4   23 use Morpheus::Defaults;
  4         8  
  4         25  
12              
13 4     4   21 use Morpheus::Plugin::Simple;
  4         7  
  4         326  
14              
15             sub new {
16 4     4 0 256 return Morpheus::Plugin::Simple->new({
17             "morpheus" => {
18             "plugins" => {
19              
20             Overrides => {
21             priority => 100,
22             object => 'Morpheus::Overrides',
23             },
24             Defaults => {
25             priority => 10,
26             object => 'Morpheus::Defaults',
27             },
28             }
29             }
30             });
31             }
32              
33             1;
34              
35              
36             __END__