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             package HTML::FormFu::Role::FormBlockAndFieldMethods;
2              
3 400     400   168488 use strict;
  400         597  
  400         15611  
4             our $VERSION = '2.05'; # VERSION
5              
6 400     400   1534 use Moose::Role;
  400         496  
  400         2508  
7              
8 400     400   1324306 use HTML::FormFu::Attribute qw( mk_inherited_accessors );
  400         577  
  400         38648  
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_class
23             auto_error_message
24             auto_constraint_class
25             auto_inflator_class
26             auto_validator_class
27             auto_transformer_class
28             auto_datalist_id
29             error_tag
30             error_container_tag
31             render_processed_value
32             force_errors
33             repeatable_count
34             locale
35             ));
36              
37             __PACKAGE__->mk_inherited_accessors( @MULTIFORM_SHARED );
38              
39             1;
40              
41             =head1 NAME
42              
43             HTML::FormFu::Role::FormBlockAndFieldMethods
44              
45             =head1 VERSION
46              
47             version 2.05
48              
49             =head1 DESCRIPTION
50              
51             Inherited Field methods.
52              
53             =cut