File Coverage

blib/lib/Tags/HTML/Page/End.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Tags::HTML::Page::End;
2              
3 4     4   71735 use base qw(Tags::HTML);
  4         19  
  4         2212  
4 4     4   78709 use strict;
  4         7  
  4         57  
5 4     4   15 use warnings;
  4         4  
  4         436  
6              
7             our $VERSION = 0.05;
8              
9             # Constructor.
10             sub new {
11 7     7 1 5020 my ($class, @params) = @_;
12              
13             # No CSS support.
14 7         14 push @params, 'no_css', 1;
15              
16 7         36 my $self = $class->SUPER::new(@params);
17              
18             # Object.
19 5         142 return $self;
20             }
21              
22             # Process 'Tags'.
23             sub _process {
24 1     1   86 my $self = shift;
25              
26             # End of page.
27 1         3 $self->{'tags'}->put(
28             ['e', 'body'],
29             ['e', 'html'],
30             );
31              
32 1         54 return;
33             }
34              
35             1;
36              
37             __END__