File Coverage

blib/lib/HTML/FormFu/Role/FormBlockAndFieldMethods.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1 404     404   224390 use strict;
  404         1053  
  404         22850  
2              
3             package HTML::FormFu::Role::FormBlockAndFieldMethods;
4             # ABSTRACT: role for form, block and field methods
5             $HTML::FormFu::Role::FormBlockAndFieldMethods::VERSION = '2.07';
6 404     404   2577 use Moose::Role;
  404         879  
  404         2966  
7              
8 404     404   2132323 use HTML::FormFu::Attribute qw( mk_inherited_accessors );
  404         1034  
  404         52717  
9              
10             our @MULTIFORM_SHARED = ( qw(
11             auto_id
12             auto_label
13             auto_label_class
14             auto_comment_class
15             auto_container_class
16             auto_container_label_class
17             auto_container_comment_class
18             auto_container_error_class
19             auto_container_per_error_class
20             auto_error_container_class
21             auto_error_container_per_error_class
22             auto_error_field_class
23             auto_error_class
24             auto_error_message
25             auto_constraint_class
26             auto_inflator_class
27             auto_validator_class
28             auto_transformer_class
29             auto_datalist_id
30             error_tag
31             error_container_tag
32             render_processed_value
33             force_errors
34             repeatable_count
35             locale
36             ) );
37              
38             __PACKAGE__->mk_inherited_accessors(@MULTIFORM_SHARED);
39              
40             1;
41              
42             __END__
43              
44             =pod
45              
46             =encoding UTF-8
47              
48             =head1 NAME
49              
50             HTML::FormFu::Role::FormBlockAndFieldMethods - role for form, block and field methods
51              
52             =head1 VERSION
53              
54             version 2.07
55              
56             =head1 DESCRIPTION
57              
58             Inherited Field methods.
59              
60             =head1 AUTHOR
61              
62             Carl Franks <cpan@fireartist.com>
63              
64             =head1 COPYRIGHT AND LICENSE
65              
66             This software is copyright (c) 2018 by Carl Franks.
67              
68             This is free software; you can redistribute it and/or modify it under
69             the same terms as the Perl 5 programming language system itself.
70              
71             =cut