blib/lib/Test/MethodFixtures/Storage.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 12 | 14 | 85.7 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 6 | 66.6 |
pod | 2 | 2 | 100.0 |
total | 18 | 22 | 81.8 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Test::MethodFixtures::Storage; | ||||||
2 | |||||||
3 | 12 | 12 | 53770 | use strict; | |||
12 | 20 | ||||||
12 | 314 | ||||||
4 | 12 | 12 | 59 | use warnings; | |||
12 | 22 | ||||||
12 | 483 | ||||||
5 | |||||||
6 | our $VERSION = '0.06'; | ||||||
7 | |||||||
8 | 12 | 12 | 58 | use Carp; | |||
12 | 23 | ||||||
12 | 737 | ||||||
9 | |||||||
10 | 12 | 12 | 67 | use base 'Class::Accessor::Fast'; | |||
12 | 21 | ||||||
12 | 2059 | ||||||
11 | |||||||
12 | 0 | 0 | 1 | sub store { croak "store() not implemented" } | |||
13 | 0 | 0 | 1 | sub retrieve { croak "retrieve() not implemented" } | |||
14 | |||||||
15 | 1; | ||||||
16 | |||||||
17 | __END__ |