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 7     7   3614 use strict;
  7         16  
  7         308  
4 7     7   37 use warnings;
  7         14  
  7         423  
5              
6 7     7   41 use parent qw(URI::_server URI::_userpass);
  7         11  
  7         54  
7              
8             our $VERSION = '5.34';
9              
10             # Generic terminal logins. This is used as a base class for 'telnet',
11             # 'tn3270', and 'rlogin' URL schemes.
12              
13             1;