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   13 use strict;
  2         10  
  2         69  
6 2     2   7 use warnings;
  2         2  
  2         169  
7              
8             our $VERSION = '5.35';
9              
10 2     2   9 use parent qw(URI::_server URI::_userpass);
  2         2  
  2         17  
11              
12 2     2 1 3 sub default_port { 873 }
13              
14             1;