blib/lib/Bubblegum.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 9 | 12 | 75.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 4 | 75.0 |
pod | n/a | ||
total | 12 | 16 | 75.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | # ABSTRACT: Opinionated Modern Perl Development Framework | ||||||
2 | package Bubblegum; | ||||||
3 | |||||||
4 | 14 | 14 | 8944 | use 5.10.0; | |||
14 | 37 | ||||||
14 | 555 | ||||||
5 | 14 | 14 | 7602 | use namespace::autoclean; | |||
14 | 213004 | ||||||
14 | 78 | ||||||
6 | |||||||
7 | 14 | 14 | 10556 | use Moo 'with'; | |||
14 | 123635 | ||||||
14 | 76 | ||||||
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 | |||||||
17 | 0 | $class->prerequisites($target); | |||||
18 | } | ||||||
19 | |||||||
20 | 1; | ||||||
21 | |||||||
22 | __END__ |