File Coverage

blib/lib/HTML/FormHandler/Field/Nested.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package HTML::FormHandler::Field::Nested;
2             # ABSTRACT: for nested elements of compound fields
3             $HTML::FormHandler::Field::Nested::VERSION = '0.40068';
4 1     1   1209 use Moose;
  1         5  
  1         13  
5             extends 'HTML::FormHandler::Field::Text';
6              
7              
8              
9              
10             __PACKAGE__->meta->make_immutable;
11 1     1   11671 use namespace::autoclean;
  1         4  
  1         12  
12             1;
13              
14             __END__
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             HTML::FormHandler::Field::Nested - for nested elements of compound fields
23              
24             =head1 VERSION
25              
26             version 0.40068
27              
28             =head1 SYNOPSIS
29              
30             This field class is intended for nested elements of compound fields. It
31             does no particular validation, since the compound field should handle
32             that.
33              
34             =head1 AUTHOR
35              
36             FormHandler Contributors - see HTML::FormHandler
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             This software is copyright (c) 2017 by Gerda Shank.
41              
42             This is free software; you can redistribute it and/or modify it under
43             the same terms as the Perl 5 programming language system itself.
44              
45             =cut