File Coverage

blib/lib/Weather/YR/Model/Cloudiness.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::Cloudiness;
2 3     3   26 use Moose;
  3         8  
  3         26  
3 3     3   14977 use namespace::autoclean;
  3         7  
  3         31  
4              
5             extends 'Weather::YR::Model';
6              
7             =head1 NAME
8              
9             Weather::YR::Model::Cloudiness
10              
11             =head1 DESCRIPTION
12              
13             This class represents a data point's "cloudiness".
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             =cut
21              
22             has 'percent' => (
23             isa => 'Maybe[Num]',
24             is => 'ro',
25             required => 0,
26             );
27              
28             #
29             # The End
30             #
31             __PACKAGE__->meta->make_immutable;
32              
33             1;