blib/lib/CHI/Driver/Memcached.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 1 | 3 | 33.3 |
branch | n/a | ||
condition | n/a | ||
subroutine | 1 | 1 | 100.0 |
pod | n/a | ||
total | 2 | 4 | 50.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package CHI::Driver::Memcached; | ||||||
2 | $CHI::Driver::Memcached::VERSION = '0.15'; | ||||||
3 | 1 | 1 | 22166 | use Moose; | |||
0 | |||||||
0 | |||||||
4 | use strict; | ||||||
5 | use warnings; | ||||||
6 | |||||||
7 | extends 'CHI::Driver::Memcached::Base'; | ||||||
8 | |||||||
9 | has '+memd_class' => ( default => 'Cache::Memcached' ); | ||||||
10 | |||||||
11 | __PACKAGE__->meta->make_immutable(); | ||||||
12 | |||||||
13 | 1; | ||||||
14 | |||||||
15 | __END__ |