File Coverage

blib/lib/HTML/FormHandler/Field/Second.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::Second;
2             # ABSTRACT: select list 0 to 59
3             $HTML::FormHandler::Field::Second::VERSION = '0.40067';
4 1     1   984 use Moose;
  1         2  
  1         8  
5             extends 'HTML::FormHandler::Field::IntRange';
6              
7             has '+range_start' => ( default => 0 );
8             has '+range_end' => ( default => 59 );
9              
10              
11             __PACKAGE__->meta->make_immutable;
12 1     1   4652 use namespace::autoclean;
  1         3  
  1         10  
13             1;
14              
15             __END__
16              
17             =pod
18              
19             =encoding UTF-8
20              
21             =head1 NAME
22              
23             HTML::FormHandler::Field::Second - select list 0 to 59
24              
25             =head1 VERSION
26              
27             version 0.40067
28              
29             =head1 DESCRIPTION
30              
31             A select field for seconds in the range of 0 to 59.
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