File Coverage

blib/lib/Rose/HTML/Form/Constants.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 Rose::HTML::Form::Constants;
2              
3 35     35   251 use strict;
  35         77  
  35         3556  
4              
5             our $VERSION = '0.606';
6              
7             require Exporter;
8             our @ISA = qw(Exporter);
9              
10             our @EXPORT_OK = qw(FF_SEPARATOR);
11              
12             our %EXPORT_TAGS = (all => \@EXPORT_OK);
13              
14 35     35   236 use constant FF_SEPARATOR => '.';
  35         74  
  35         2494  
15              
16             1;