| blib/lib/HTTP/Session/Store/Null.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 11 | 12 | 91.6 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 7 | 8 | 87.5 |
| pod | 4 | 6 | 66.6 |
| total | 22 | 26 | 84.6 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package HTTP::Session::Store::Null; | ||||||
| 2 | 4 | 4 | 26619 | use strict; | |||
| 4 | 9 | ||||||
| 4 | 139 | ||||||
| 3 | 4 | 4 | 22 | use warnings; | |||
| 4 | 6 | ||||||
| 4 | 451 | ||||||
| 4 | |||||||
| 5 | 6 | 6 | 0 | 270 | sub new { bless {}, shift } | ||
| 6 | |||||||
| 7 | 1 | 1 | 1 | 12 | sub select { } | ||
| 8 | 7 | 7 | 1 | 76 | sub insert { } | ||
| 9 | 1 | 1 | 1 | 7 | sub update { } | ||
| 10 | 1 | 1 | 1 | 9 | sub delete { } | ||
| 11 | 0 | 0 | 0 | sub cleanup { Carp::croak "This storage doesn't support cleanup" } | |||
| 12 | |||||||
| 13 | 1; | ||||||
| 14 | __END__ |