lib/Class/MethodMaker/hash.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 15 | 15 | 100.0 |
branch | 1 | 2 | 50.0 |
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | n/a | ||
total | 21 | 22 | 95.4 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Class::MethodMaker::hash; | ||||||
2 | 1 | 1 | 3 | use strict; | |||
1 | 1 | ||||||
1 | 40 | ||||||
3 | 1 | 1 | 4 | use warnings; | |||
1 | 0 | ||||||
1 | 40 | ||||||
4 | |||||||
5 | 1 | 1 | 4 | use AutoLoader 5.57 qw( AUTOLOAD ); | |||
1 | 23 | ||||||
1 | 6 | ||||||
6 | our @ISA = qw( AutoLoader ); | ||||||
7 | |||||||
8 | 1 | 1 | 61 | use Carp qw( carp croak cluck ); | |||
1 | 1 | ||||||
1 | 161 | ||||||
9 | |||||||
10 | 1 | 50 | 1 | 5 | use constant DEBUG => $ENV{_CMM_DEBUG} ? 1 : 0; | ||
1 | 1 | ||||||
1 | 72 | ||||||
11 | |||||||
12 | __END__ |