File Coverage

blib/lib/HTML/FormFu/Element/Blank.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1 3     3   993 use strict;
  3         7  
  3         172  
2              
3             package HTML::FormFu::Element::Blank;
4             $HTML::FormFu::Element::Blank::VERSION = '2.07';
5             # ABSTRACT: blank element
6              
7 3     3   19 use Moose;
  3         5  
  3         22  
8              
9             extends 'HTML::FormFu::Element';
10              
11             with 'HTML::FormFu::Role::Element::Input';
12              
13 3     3   19526 use HTML::FormFu::Constants qw( $EMPTY_STR );
  3         8  
  3         767  
14              
15             after BUILD => sub {
16             my $self = shift;
17              
18             $self->label_tag($EMPTY_STR);
19              
20             #$self->field_type( $EMPTY_STR );
21             $self->render($EMPTY_STR);
22              
23             return;
24             };
25              
26             sub field_tag {
27 1     1   4 return $EMPTY_STR;
28             }
29              
30             override render => sub {
31             return $EMPTY_STR;
32             };
33              
34             around render_data_non_recursive => sub {
35             return;
36             };
37              
38             __PACKAGE__->meta->make_immutable;
39              
40             1;
41              
42             __END__
43              
44             =pod
45              
46             =encoding UTF-8
47              
48             =head1 NAME
49              
50             HTML::FormFu::Element::Blank - blank element
51              
52             =head1 VERSION
53              
54             version 2.07
55              
56             =head1 SEE ALSO
57              
58             Is a sub-class of, and inherits methods from
59             L<HTML::FormFu::Role::Element::Input>,
60             L<HTML::FormFu::Role::Element::Field>,
61             L<HTML::FormFu::Element>
62              
63             L<HTML::FormFu>
64              
65             =head1 AUTHOR
66              
67             Carl Franks, C<cfranks@cpan.org>
68              
69             =head1 LICENSE
70              
71             This library is free software, you can redistribute it and/or modify it under
72             the same terms as Perl itself.
73              
74             =head1 AUTHOR
75              
76             Carl Franks <cpan@fireartist.com>
77              
78             =head1 COPYRIGHT AND LICENSE
79              
80             This software is copyright (c) 2018 by Carl Franks.
81              
82             This is free software; you can redistribute it and/or modify it under
83             the same terms as the Perl 5 programming language system itself.
84              
85             =cut