File Coverage

blib/lib/URI/smtp.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package URI::smtp; # draft-earhart-url-smtp-00
2              
3 1     1   15 use strict;
  1         1  
  1         34  
4 1     1   4 use warnings;
  1         1  
  1         89  
5              
6             our $VERSION = '5.35';
7              
8 1     1   5 use parent 'URI::_emailauth';
  1         1  
  1         8  
9              
10 1     1   46 use URI::Escape qw(uri_unescape);
  1         2  
  1         52  
11              
12 2     2 1 4 sub default_port { 25 }
13              
14             #smtp://;auth=@:
15              
16             1;