File Coverage

blib/lib/Weather/YR/Model/Pressure.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::Pressure;
2 3     3   26 use Moose;
  3         8  
  3         38  
3 3     3   15146 use namespace::autoclean;
  3         10  
  3         39  
4              
5             extends 'Weather::YR::Model';
6              
7             =head1 NAME
8              
9             Weather::YR::Model::Pressure
10              
11             =head1 DESCRIPTION
12              
13             This class represents a data point's (air) "pressure".
14              
15             =head1 METHODS
16              
17             This class inherits all the methods from L<Weather::YR::Model> and provides the
18             following new methods:
19              
20             =head2 hPa
21              
22             Returns the current data point's (air) pressure in hPa (hectopascal).
23              
24             =cut
25              
26             has 'hPa' => (
27             isa => 'Num',
28             is => 'ro',
29             required => 1,
30             );
31              
32             #
33             # The End
34             #
35             __PACKAGE__->meta->make_immutable;
36              
37             1;