| blib/lib/Class/Value/Notify.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 13 | 15 | 86.6 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 5 | 7 | 71.4 |
| pod | 3 | 3 | 100.0 |
| total | 21 | 25 | 84.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | 1 | 1 | 519 | use 5.008; | |||
| 1 | 4 | ||||||
| 1 | 48 | ||||||
| 2 | 1 | 1 | 6 | use strict; | |||
| 1 | 1 | ||||||
| 1 | 27 | ||||||
| 3 | 1 | 1 | 5 | use warnings; | |||
| 1 | 1 | ||||||
| 1 | 59 | ||||||
| 4 | |||||||
| 5 | package Class::Value::Notify; | ||||||
| 6 | our $VERSION = '1.100840'; | ||||||
| 7 | # ABSTRACT: Base class for notification delegates | ||||||
| 8 | 1 | 1 | 5 | use parent 'Class::Accessor::Complex'; | |||
| 1 | 2 | ||||||
| 1 | 7 | ||||||
| 9 | __PACKAGE__->mk_new; | ||||||
| 10 | 1 | 1 | 1 | 36 | sub init { } | ||
| 11 | 0 | 0 | 1 | sub notify_value_not_wellformed { } | |||
| 12 | 0 | 0 | 1 | sub notify_value_invalid { } | |||
| 13 | 1; | ||||||
| 14 | |||||||
| 15 | |||||||
| 16 | __END__ |