File Coverage

blib/lib/URI/sftp.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 15 86.6


line stmt bran cond sub pod time code
1             package URI::sftp;
2              
3             our $VERSION = '0.02';
4              
5 1     1   24214 use strict;
  1         2  
  1         35  
6 1     1   5 use warnings;
  1         2  
  1         37  
7              
8 1     1   7 use base qw(URI::_server URI::_userpass);
  1         5  
  1         892  
9              
10             # sub default_port { 22 }
11              
12 0     0 1   sub path { shift->path_query(@_) } # XXX
13              
14              
15             1;
16              
17             __END__