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