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.96';
3 4     4   72140 use strict;
  4         14  
  4         147  
4 4     4   32 use warnings;
  4         10  
  4         163  
5              
6             # ABSTRACT: Handling of MIME encoded mailbox lists
7              
8 4     4   37 use base qw(Email::MIME::RFC2047::AddressList);
  4         26  
  4         2149  
9              
10 4     4   1113 use Email::MIME::RFC2047::Mailbox;
  4         15  
  4         336  
11              
12             sub _parse_item {
13 21     21   57 my ($class, $string_ref, $decoder) = @_;
14              
15 21         119 return Email::MIME::RFC2047::Mailbox->parse(
16             $string_ref, $decoder
17             );
18             }
19              
20             1;
21              
22             __END__