File Coverage

blib/lib/HTML/FormHandler/Base.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 2 0.0
total 10 13 76.9


line stmt bran cond sub pod time code
1             package HTML::FormHandler::Base;
2             # ABSTRACT: stub
3             $HTML::FormHandler::Base::VERSION = '0.40067';
4 141     141   88915 use Moose;
  141         239  
  141         918  
5              
6             with 'HTML::FormHandler::Widget::Form::Simple';
7              
8             # here to make it possible to combine the Blocks role with a role
9             # setting the render_list without an 'excludes'
10       0 0   sub has_render_list { }
11 50     50 0 1492 sub build_render_list {[]}
12              
13             __PACKAGE__->meta->make_immutable;
14 141     141   632610 use namespace::autoclean;
  141         231  
  141         1087  
15             1;
16              
17             __END__
18              
19             =pod
20              
21             =encoding UTF-8
22              
23             =head1 NAME
24              
25             HTML::FormHandler::Base - stub
26              
27             =head1 VERSION
28              
29             version 0.40067
30              
31             =head1 AUTHOR
32              
33             FormHandler Contributors - see HTML::FormHandler
34              
35             =head1 COPYRIGHT AND LICENSE
36              
37             This software is copyright (c) 2016 by Gerda Shank.
38              
39             This is free software; you can redistribute it and/or modify it under
40             the same terms as the Perl 5 programming language system itself.
41              
42             =cut