File Coverage

blib/lib/URI/_login.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 URI::_login;
2              
3 1     1   432 use strict;
  1         3  
  1         30  
4 1     1   6 use warnings;
  1         2  
  1         35  
5              
6 1     1   6 use parent qw(URI::_server URI::_userpass);
  1         2  
  1         6  
7              
8             our $VERSION = '5.20';
9              
10             # Generic terminal logins. This is used as a base class for 'telnet',
11             # 'tn3270', and 'rlogin' URL schemes.
12              
13             1;