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   29 use strict;
  4         4  
  4         117  
4 4     4   16 use warnings;
  4         8  
  4         160  
5              
6             our $VERSION = '5.20';
7              
8 4     4   21 use parent 'URI::http';
  4         5  
  4         17  
9              
10 3     3 1 12 sub default_port { 443 }
11              
12 1     1 1 3 sub secure { 1 }
13              
14             1;