File Coverage

blib/lib/Bubblegum.pm
Criterion Covered Total %
statement 4 6 66.6
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 8 75.0


line stmt bran cond sub pod time code
1             # ABSTRACT: Opinionated Modern Perl Development Framework
2             package Bubblegum;
3              
4 15     15   24125 use 5.10.0;
  15         41  
  15         626  
5 15     15   15662 use namespace::autoclean;
  0            
  0            
6              
7             use Moo 'with';
8              
9             with 'Bubblegum::Role::Configuration';
10              
11             our $VERSION = '0.44'; # VERSION
12              
13             sub import {
14             my $target = caller;
15             my $class = shift;
16              
17             $class->prerequisites($target);
18             }
19              
20             1;
21              
22             __END__