| blib/lib/Apache2/ASP/ApplicationStateManager/NonPersisted.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 9 | 11 | 81.8 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 3 | 5 | 60.0 |
| pod | 1 | 2 | 50.0 |
| total | 13 | 18 | 72.2 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | |||||||
| 2 | package Apache2::ASP::ApplicationStateManager::NonPersisted; | ||||||
| 3 | |||||||
| 4 | 23 | 23 | 97 | use strict; | |||
| 23 | 33 | ||||||
| 23 | 727 | ||||||
| 5 | 23 | 23 | 97 | use warnings 'all'; | |||
| 23 | 35 | ||||||
| 23 | 1166 | ||||||
| 6 | 23 | 23 | 107 | use base 'Apache2::ASP::ApplicationStateManager'; | |||
| 23 | 34 | ||||||
| 23 | 9472 | ||||||
| 7 | |||||||
| 8 | sub new | ||||||
| 9 | { | ||||||
| 10 | 0 | 0 | 0 | return bless { }, shift; | |||
| 11 | }# end new() | ||||||
| 12 | |||||||
| 13 | *create = *retrieve = \&new; | ||||||
| 14 | |||||||
| 15 | 0 | 0 | 1 | sub save { 1 } | |||
| 16 | |||||||
| 17 | 1;# return true: | ||||||
| 18 |