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 1     1   1285 use strict;
  1         3  
  1         53  
2              
3             package HTML::FormFu::Preload;
4             # ABSTRACT: preload plugins
5             $HTML::FormFu::Preload::VERSION = '2.07';
6 1     1   7 use warnings;
  1         2  
  1         30  
7              
8 1     1   6 use HTML::FormFu;
  1         3  
  1         38  
9              
10             use Module::Pluggable (
11 1         8 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   483 );
  1         874  
25              
26             __PACKAGE__->plugins;
27              
28             1;
29              
30             __END__
31              
32             =pod
33              
34             =encoding UTF-8
35              
36             =head1 NAME
37              
38             HTML::FormFu::Preload - preload plugins
39              
40             =head1 VERSION
41              
42             version 2.07
43              
44             =head1 AUTHOR
45              
46             Carl Franks <cpan@fireartist.com>
47              
48             =head1 COPYRIGHT AND LICENSE
49              
50             This software is copyright (c) 2018 by Carl Franks.
51              
52             This is free software; you can redistribute it and/or modify it under
53             the same terms as the Perl 5 programming language system itself.
54              
55             =cut