File Coverage

blib/lib/Email/Address/JP/Mobile/Base.pm
Criterion Covered Total %
statement 10 12 83.3
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 16 87.5


line stmt bran cond sub pod time code
1             package Email::Address::JP::Mobile::Base;
2 5     5   30 use strict;
  5         15  
  5         161  
3 5     5   32 use warnings;
  5         11  
  5         134  
4              
5 5     5   4789 use Encode;
  5         64374  
  5         537  
6 5     5   2873 use Encode::JP::Mobile;
  0            
  0            
7              
8             sub new {
9             bless {}, shift;
10             }
11              
12             sub matches { 0 }
13              
14             sub name { '' }
15              
16             sub carrier_letter { '' }
17              
18             sub is_mobile { 0 }
19              
20             sub mime_encoding { }
21              
22             sub send_encoding { }
23              
24             sub parse_encoding { }
25              
26             1;