File Coverage

blib/lib/IO/Socket/SecureSocks.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package IO::Socket::SecureSocks;
2            
3 2     2   28441 use strict;
  2         6  
  2         76  
4 2     2   11 use warnings;
  2         6  
  2         69  
5            
6 2     2   20 use vars qw(@ISA $VERSION);
  2         5  
  2         287  
7            
8             require Exporter;
9             require IO::Socket::Socks;
10             require IO::Socket::SSL;
11            
12             @IO::Socket::Socks::ISA = qw(Exporter IO::Socket::SSL);
13             @ISA = qw(Exporter IO::Socket::Socks);
14             $VERSION = '0.2';
15            
16             1;
17            
18             __END__