blib/lib/Fennec/Declare.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 14 | 14 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | 0 | 1 | 0.0 |
total | 18 | 19 | 94.7 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Fennec::Declare; | ||||||
2 | 12 | 12 | 7404 | use strict; | |||
12 | 24 | ||||||
12 | 1692 | ||||||
3 | 12 | 12 | 72 | use warnings; | |||
12 | 24 | ||||||
12 | 552 | ||||||
4 | |||||||
5 | our $VERSION = "1.002"; | ||||||
6 | |||||||
7 | 12 | 12 | 60 | use base 'Fennec'; | |||
12 | 72 | ||||||
12 | 14700 | ||||||
8 | require Fennec::Declare::Magic; | ||||||
9 | |||||||
10 | sub defaults { | ||||||
11 | 24 | 24 | 0 | 412128 | my $class = shift; | ||
12 | 24 | 180 | my %defaults = $class->SUPER::defaults(); | ||||
13 | |||||||
14 | 24 | 432 | push @{$defaults{'utils'}} => 'Fennec::Declare::Magic'; | ||||
24 | 108 | ||||||
15 | |||||||
16 | 24 | 264 | return (%defaults); | ||||
17 | } | ||||||
18 | |||||||
19 | 1; | ||||||
20 | |||||||
21 | __END__ |