File Coverage

blib/lib/Email/MIME/RFC2047/MailboxList.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Email::MIME::RFC2047::MailboxList;
2             $Email::MIME::RFC2047::MailboxList::VERSION = '0.95';
3 4     4   16717 use strict;
  4         9  
  4         118  
4 4     4   18 use warnings;
  4         5  
  4         139  
5              
6             # ABSTRACT: Handling of MIME encoded mailbox lists
7              
8 4     4   18 use base qw(Email::MIME::RFC2047::AddressList);
  4         5  
  4         1714  
9              
10 4     4   911 use Email::MIME::RFC2047::Mailbox;
  4         5  
  4         265  
11              
12             sub _parse_item {
13 21     21   24 my ($class, $string_ref, $decoder) = @_;
14              
15 21         59 return Email::MIME::RFC2047::Mailbox->parse(
16             $string_ref, $decoder
17             );
18             }
19              
20             1;
21              
22             __END__