File Coverage

blib/lib/Mail/Karmasphere/Parser/Simple/EmailList.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 16 19 84.2


line stmt bran cond sub pod time code
1             package Mail::Karmasphere::Parser::Simple::EmailList;
2              
3 2     2   2359 use strict;
  2         4  
  2         83  
4 2     2   14 use warnings;
  2         4  
  2         70  
5 2     2   11 use base 'Mail::Karmasphere::Parser::Simple::List';
  2         4  
  2         891  
6              
7 1     1   3 sub _streams { "email" }
8              
9 1     1   4 sub _type { "email" }
10              
11 0     0 0   sub my_format { "simple.emaillist" } # the source table's "magic" field
12              
13             1;