| 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 | 1654 | use Moose; | |||
| 3 | 147 | ||||||
| 3 | 18 | ||||||
| 3 | 3 | 3 | 15357 | use namespace::autoclean; | |||
| 3 | 6 | ||||||
| 3 | 24 | ||||||
| 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; |