File Coverage

blib/lib/HTML/FormFu/Element/Hr.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 3     3   1121 use strict;
  3         9  
  3         173  
2              
3             package HTML::FormFu::Element::Hr;
4             $HTML::FormFu::Element::Hr::VERSION = '2.07';
5             # ABSTRACT: horizontal-rule element
6              
7 3     3   17 use Moose;
  3         7  
  3         21  
8              
9             extends 'HTML::FormFu::Element';
10              
11             with 'HTML::FormFu::Role::Element::NonBlock';
12              
13             after BUILD => sub {
14             my $self = shift;
15              
16             $self->tag('hr');
17              
18             return;
19             };
20              
21             __PACKAGE__->meta->make_immutable;
22              
23             1;
24              
25             __END__
26              
27             =pod
28              
29             =encoding UTF-8
30              
31             =head1 NAME
32              
33             HTML::FormFu::Element::Hr - horizontal-rule element
34              
35             =head1 VERSION
36              
37             version 2.07
38              
39             =head1 DESCRIPTION
40              
41             Horizontal-rule element.
42              
43             =head1 SEE ALSO
44              
45             Is a sub-class of, and inherits methods from
46             L<HTML::FormFu::Role::Element::NonBlock>,
47             L<HTML::FormFu::Element>
48              
49             L<HTML::FormFu>
50              
51             =head1 AUTHOR
52              
53             Carl Franks, C<cfranks@cpan.org>
54              
55             =head1 LICENSE
56              
57             This library is free software, you can redistribute it and/or modify it under
58             the same terms as Perl itself.
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