File Coverage

blib/lib/Mail/Audit/MailInternet.pm
Criterion Covered Total %
statement 14 17 82.3
branch n/a
condition 1 3 33.3
subroutine 5 6 83.3
pod 2 2 100.0
total 22 28 78.5


line stmt bran cond sub pod time code
1 9     9   45 use strict;
  9         18  
  9         562  
2             package Mail::Audit::MailInternet;
3             {
4             $Mail::Audit::MailInternet::VERSION = '2.228';
5             }
6             # ABSTRACT: a Mail::Internet-based Mail::Audit object
7              
8 9     9   7747 use Mail::Internet;
  9         161988  
  9         421  
9 9     9   3028 use parent qw(Mail::Audit Mail::Internet);
  9         1023  
  9         155  
10              
11             sub _autotype_new {
12 0     0   0 my $class = shift;
13 0         0 my $self = shift;
14 0         0 bless($self, $class);
15             }
16              
17             sub new {
18 9     9 1 24 my $class = shift;
19 9   33     88 my $type = ref($class) || $class;
20              
21             # we want to create a subclass of Mail::Internet
22             # call M::I's constructor
23 9         91 my $self = Mail::Internet->new(@_);
24              
25             # now rebless it into this class
26 9         6322 bless $self, $type;
27             }
28              
29 1     1 1 13 sub is_mime { 0; }
30              
31             1;
32              
33             __END__