File Coverage

blib/lib/HTML/FormHandler/Field/MonthDay.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 HTML::FormHandler::Field::MonthDay;
2             # ABSTRACT: select list 1 to 31
3             $HTML::FormHandler::Field::MonthDay::VERSION = '0.40068';
4 2     2   1851 use Moose;
  2         5  
  2         19  
5             extends 'HTML::FormHandler::Field::IntRange';
6              
7             has '+range_start' => ( default => 1 );
8             has '+range_end' => ( default => 31 );
9              
10              
11             __PACKAGE__->meta->make_immutable;
12 2     2   13390 use namespace::autoclean;
  2         6  
  2         21  
13             1;
14              
15             __END__
16              
17             =pod
18              
19             =encoding UTF-8
20              
21             =head1 NAME
22              
23             HTML::FormHandler::Field::MonthDay - select list 1 to 31
24              
25             =head1 VERSION
26              
27             version 0.40068
28              
29             =head1 DESCRIPTION
30              
31             Generates a select list for integers 1 to 31.
32              
33             =head1 AUTHOR
34              
35             FormHandler Contributors - see HTML::FormHandler
36              
37             =head1 COPYRIGHT AND LICENSE
38              
39             This software is copyright (c) 2017 by Gerda Shank.
40              
41             This is free software; you can redistribute it and/or modify it under
42             the same terms as the Perl 5 programming language system itself.
43              
44             =cut