File Coverage

blib/lib/Test/Reporter/Transport/Net/SMTP/SSL.pm
Criterion Covered Total %
statement 21 21 100.0
branch 1 2 50.0
condition n/a
subroutine 7 7 100.0
pod n/a
total 29 30 96.6


line stmt bran cond sub pod time code
1 2     2   95446 use warnings;
  2         7  
  2         127  
2 2     2   14 use strict;
  2         12  
  2         177  
3 2 50   2   17 BEGIN{ if (not $] < 5.006) { require warnings; warnings->import } }
  2         19  
  2         72  
4 2     2   71 use 5.006;
  2         9  
  2         136  
5             package Test::Reporter::Transport::Net::SMTP::SSL;
6 2     2   11 use base 'Test::Reporter::Transport::Net::SMTP';
  2         11  
  2         2009  
7 2     2   18 use vars qw/$VERSION/;
  2         6  
  2         185  
8              
9             $VERSION = '0.1.2';
10              
11 2     2   743 use Net::SMTP::SSL;
  2         156340  
  2         77  
12              
13              
14             __END__