File Coverage

blib/lib/HTML/FromMail/Page.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 17 20 85.0


line stmt bran cond sub pod time code
1             # This code is part of Perl distribution HTML-FromMail version 4.00.
2             # The POD got stripped from this file by OODoc version 3.05.
3             # For contributors see file ChangeLog.
4              
5             # This software is copyright (c) 2003-2025 by Mark Overmeer.
6              
7             # This is free software; you can redistribute it and/or modify it under
8             # the same terms as the Perl 5 programming language system itself.
9             # SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later
10              
11              
12             package HTML::FromMail::Page;{
13             our $VERSION = '4.00';
14             }
15              
16 1     1   9 use base 'HTML::FromMail::Object';
  1         2  
  1         141  
17              
18 1     1   8 use strict;
  1         2  
  1         36  
19 1     1   6 use warnings;
  1         2  
  1         65  
20              
21 1     1   7 use Log::Report 'html-frommail';
  1         2  
  1         7  
22              
23             #--------------------
24              
25             #-----------
26              
27             #-----------
28              
29             sub lookup($$)
30 0     0 1   { my ($self, $label, $args) = @_;
31 0           $args->{formatter}->lookup($label, $args);
32             }
33              
34             1;