File Coverage

blib/lib/Weather/YR/Model/DewPointTemperature.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::DewPointTemperature;
2 3     3   15 use Moose;
  3         5  
  3         22  
3 3     3   12294 use namespace::autoclean;
  3         7  
  3         28  
4              
5             extends 'Weather::YR::Model::Temperature';
6              
7             =head1 NAME
8              
9             Weather::YR::Model::DewPointTemperature
10              
11             =head1 DESCRIPTION
12              
13             This class represents a data point's "dew point temperature".
14              
15             =head1 METHODS
16              
17             This class inherits all the methods from L<Weather::YR::Model::Temperature>.
18              
19             =cut
20              
21             has '+celsius' => (
22             isa => 'Maybe[Num]',
23             is => 'ro',
24             required => 1,
25             );
26              
27             #
28             # The End
29             #
30             __PACKAGE__->meta->make_immutable;
31              
32             1;