File Coverage

blib/lib/Mail/Box/MH/Message.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             # Copyrights 2001-2023 by [Mark Overmeer].
2             # For other contributors see ChangeLog.
3             # See the manual pages for details on the licensing terms.
4             # Pod stripped from pm file by OODoc 2.03.
5             # This code is part of distribution Mail-Box. Meta-POD processed with
6             # OODoc into POD and HTML manual-pages. See README.md
7             # Copyright Mark Overmeer. Licensed under the same terms as Perl itself.
8              
9             package Mail::Box::MH::Message;
10 11     11   935 use vars '$VERSION';
  11         40  
  11         643  
11             $VERSION = '3.010';
12              
13 11     11   69 use base 'Mail::Box::Dir::Message';
  11         25  
  11         1123  
14              
15 11     11   77 use strict;
  11         22  
  11         250  
16 11     11   70 use warnings;
  11         24  
  11         364  
17              
18 11     11   73 use File::Copy;
  11         23  
  11         601  
19 11     11   114 use Carp;
  11         35  
  11         689  
20              
21              
22             #-------------------------------------------
23              
24              
25             # Purpose of doc is only the warning... no new implementation required.
26              
27             #-------------------------------------------
28              
29              
30             1;