File Coverage

blib/lib/HTML/FormFu/Preload.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::Preload;
2              
3 1     1   1397 use strict;
  1         15  
  1         30  
4 1     1   3 use warnings;
  1         1  
  1         51  
5              
6             our $VERSION = '2.05'; # VERSION
7              
8 1     1   3 use HTML::FormFu;
  1         3  
  1         30  
9              
10             use Module::Pluggable (
11 1         6 search_path => [ qw(
12             HTML::FormFu::Element
13             HTML::FormFu::Constraint
14             HTML::FormFu::Deflator
15             HTML::FormFu::Filter
16             HTML::FormFu::Inflator
17             HTML::FormFu::Transformer
18             HTML::FormFu::Validator
19             HTML::FormFu::Plugin
20             HTML::FormFu::OutputProcessor
21             )
22             ],
23             require => 1
24 1     1   423 );
  1         693  
25              
26             __PACKAGE__->plugins;
27              
28             1;