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 6     6   487 use strict;
  6         8  
  6         228  
4 6     6   91 use warnings;
  6         10  
  6         359  
5              
6             our $VERSION = '5.35';
7              
8 6     6   23 use parent 'URI::http';
  6         28  
  6         31  
9              
10 7     7 1 17 sub default_port { 443 }
11              
12 2     2 1 9 sub secure { 1 }
13              
14             1;