blib/lib/KiokuDB/Backend/TypeMap/Default/Storable.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 10 | 10 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | n/a | ||
total | 14 | 14 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | #!/usr/bin/perl | ||||||
2 | |||||||
3 | package KiokuDB::Backend::TypeMap::Default::Storable; | ||||||
4 | 21 | 21 | 10447 | use Moose::Role; | |||
21 | 35 | ||||||
21 | 128 | ||||||
5 | |||||||
6 | 21 | 21 | 88864 | use KiokuDB::TypeMap::Default::Storable; | |||
21 | 62 | ||||||
21 | 897 | ||||||
7 | |||||||
8 | 21 | 21 | 169 | use namespace::clean -except => 'meta'; | |||
21 | 40 | ||||||
21 | 171 | ||||||
9 | |||||||
10 | with qw(KiokuDB::Backend::TypeMap::Default); | ||||||
11 | |||||||
12 | sub _build_default_typemap { | ||||||
13 | # FIXME options | ||||||
14 | 46 | 46 | 1598 | KiokuDB::TypeMap::Default::Storable->new | |||
15 | } | ||||||
16 | |||||||
17 | __PACKAGE__ | ||||||
18 | |||||||
19 | __END__ |