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         3  
  2         61  
6 2     2   8 use warnings;
  2         4  
  2         82  
7              
8             our $VERSION = '5.21';
9              
10 2     2   788 use parent qw(URI::_server URI::_userpass);
  2         569  
  2         11  
11              
12 2     2 1 5 sub default_port { 873 }
13              
14             1;