File Coverage

blib/lib/HTML/FormHandler/Field/Month.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::Month;
2             # ABSTRACT: select list 1 to 12
3             $HTML::FormHandler::Field::Month::VERSION = '0.40067';
4 2     2   1646 use Moose;
  2         3  
  2         16  
5             extends 'HTML::FormHandler::Field::IntRange';
6              
7             has '+range_start' => ( default => 1 );
8             has '+range_end' => ( default => 12 );
9              
10              
11             __PACKAGE__->meta->make_immutable;
12 2     2   9496 use namespace::autoclean;
  2         3  
  2         19  
13             1;
14              
15             __END__
16              
17             =pod
18              
19             =encoding UTF-8
20              
21             =head1 NAME
22              
23             HTML::FormHandler::Field::Month - select list 1 to 12
24              
25             =head1 VERSION
26              
27             version 0.40067
28              
29             =head1 DESCRIPTION
30              
31             Select list for range of 1 to 12. Widget type is 'select'
32              
33             =head1 AUTHOR
34              
35             FormHandler Contributors - see HTML::FormHandler
36              
37             =head1 COPYRIGHT AND LICENSE
38              
39             This software is copyright (c) 2016 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