File Coverage

blib/lib/Bubblegum/Class.pm
Criterion Covered Total %
statement 9 14 64.2
branch n/a
condition n/a
subroutine 3 4 75.0
pod n/a
total 12 18 66.6


line stmt bran cond sub pod time code
1             # ABSTRACT: Object Orientation for Bubblegum via Moo
2             package Bubblegum::Class;
3              
4 19     19   177050 use 5.10.0;
  19         51  
  19         779  
5 19     19   8284 use namespace::autoclean;
  19         248485  
  19         101  
6              
7 19     19   12461 use Moo 'with';
  19         178261  
  19         111  
8              
9             with 'Bubblegum::Role::Configuration';
10              
11             our $VERSION = '0.40'; # VERSION
12              
13             sub import {
14 0     0     my $target = caller;
15 0           my $class = shift;
16 0           my @export = @_;
17              
18 0           $class->prerequisites($target);
19 0           Moo->import::into($target, @export);
20             }
21              
22             1;
23              
24             __END__