File Coverage

blib/lib/Form/Processor/Field/Month.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package Form::Processor::Field::Month;
2             $Form::Processor::Field::Month::VERSION = '1.162360';
3 1     1   936 use strict;
  1         1  
  1         24  
4 1     1   3 use warnings;
  1         1  
  1         25  
5 1     1   3 use base 'Form::Processor::Field::IntRange';
  1         0  
  1         357  
6              
7              
8              
9 1     1 0 5 sub init_range_start {1}
10 1     1 0 5 sub init_range_end {12}
11              
12              
13             # ABSTRACT: Select list of 1 to 12
14              
15              
16              
17             1;
18              
19             __END__