File Coverage

blib/lib/HTML/FormFu/Constants.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package HTML::FormFu::Constants;
2              
3 404     404   1301 use strict;
  404         440  
  404         8787  
4 404     404   1170 use warnings;
  404         414  
  404         12328  
5              
6             our $VERSION = '2.05'; # VERSION
7              
8 404     404   165446 use Readonly;
  404         1154547  
  404         18541  
9 404     404   2065 use Exporter qw( import );
  404         494  
  404         26573  
10              
11             Readonly our $EMPTY_STR => q{};
12             Readonly our $SPACE => q{ };
13              
14             our @EXPORT_OK = qw(
15             $EMPTY_STR
16             $SPACE
17             );
18              
19             1;