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 | 13 | 13 | 66410 | use strict; | |||
13 | 26 | ||||||
13 | 391 | ||||||
4 | 13 | 13 | 69 | use warnings; | |||
13 | 28 | ||||||
13 | 664 | ||||||
5 | |||||||
6 | our $VERSION = '0.05'; | ||||||
7 | |||||||
8 | 13 | 13 | 74 | use Carp; | |||
13 | 24 | ||||||
13 | 1035 | ||||||
9 | |||||||
10 | 13 | 13 | 79 | use base 'Class::Accessor::Fast'; | |||
13 | 27 | ||||||
13 | 2390 | ||||||
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__ |