File Coverage

blib/lib/Bubblegum.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             # ABSTRACT: Opinionated Modern Perl Development Framework
2             package Bubblegum;
3              
4 16     16   21555 use 5.10.0;
  16         43  
  16         686  
5 16     16   6989 use namespace::autoclean;
  16         218277  
  16         76  
6              
7 16     16   8486 use Moo 'with';
  16         114555  
  16         76  
8              
9             with 'Bubblegum::Role::Configuration';
10              
11             our $VERSION = '0.45'; # VERSION
12              
13             sub import {
14 54     54   6611 my $target = caller;
15 54         101 my $class = shift;
16              
17 54         237 $class->prerequisites($target);
18             }
19              
20             1;
21              
22             __END__