| blib/lib/Weather/YR/Model/Probability.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 6 | 6 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 2 | 2 | 100.0 |
| pod | n/a | ||
| total | 8 | 8 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Weather::YR::Model::Probability; | ||||||
| 2 | 3 | 3 | 2401 | use Moose; | |||
| 3 | 11 | ||||||
| 3 | 19 | ||||||
| 3 | 3 | 3 | 19366 | use namespace::autoclean; | |||
| 3 | 6 | ||||||
| 3 | 19 | ||||||
| 4 | |||||||
| 5 | extends 'Weather::YR::Model'; | ||||||
| 6 | |||||||
| 7 | has 'value' => ( isa => 'Maybe[Num]', is => 'ro', required => 0, default => 0 ); | ||||||
| 8 | |||||||
| 9 | __PACKAGE__->meta->make_immutable; | ||||||
| 10 | |||||||
| 11 | 1; |