File Coverage

blib/lib/URI/rsync.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             package URI::rsync; # http://rsync.samba.org/
2              
3             # rsync://[USER@]HOST[:PORT]/SRC
4              
5 2     2   14 use strict;
  2         4  
  2         58  
6 2     2   10 use warnings;
  2         2  
  2         91  
7              
8             our $VERSION = '5.19';
9              
10 2     2   827 use parent qw(URI::_server URI::_userpass);
  2         584  
  2         10  
11              
12 2     2 1 4 sub default_port { 873 }
13              
14             1;