File Coverage

blib/lib/URI/https.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 2 2 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package URI::https;
2              
3 4     4   26 use strict;
  4         8  
  4         125  
4 4     4   20 use warnings;
  4         7  
  4         582  
5              
6             our $VERSION = '5.19';
7              
8 4     4   23 use parent 'URI::http';
  4         8  
  4         21  
9              
10 3     3 1 10 sub default_port { 443 }
11              
12 1     1 1 15 sub secure { 1 }
13              
14             1;