File Coverage

blib/lib/HTML/FromMail/Format.pm
Criterion Covered Total %
statement 12 16 75.0
branch n/a
condition n/a
subroutine 4 8 50.0
pod 4 4 100.0
total 20 28 71.4


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::Format;{
13             our $VERSION = '4.00';
14             }
15              
16 1     1   7 use base 'Mail::Reporter';
  1         1  
  1         100  
17              
18 1     1   5 use strict;
  1         1  
  1         17  
19 1     1   3 use warnings;
  1         1  
  1         36  
20              
21 1     1   3 use Log::Report 'html-frommail';
  1         1  
  1         5  
22              
23             #--------------------
24              
25             #-----------
26              
27             #-----------
28              
29              
30 0     0 1   sub containerText($) { $_[0]->notImplemented }
31              
32              
33 0     0 1   sub processText($$) { $_[0]->notImplemented }
34              
35              
36 0     0 1   sub lookup($$) { $_[0]->notImplemented }
37              
38              
39 0     0 1   sub onFinalToken($) { 0 }
40              
41             1;