File Coverage

blib/lib/IO/All/HTTPS.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 16 81.2


line stmt bran cond sub pod time code
1             package IO::All::HTTPS;
2 1     1   1201 use strict;
  1         1  
  1         41  
3 1     1   5 use warnings;
  1         2  
  1         47  
4             our $VERSION = '0.14';
5 1     1   6233 use IO::All::HTTP '-base';
  1         4  
  1         18  
6              
7             const type => 'https';
8              
9 0     0 1   sub https { my $self=shift;$self->lwp_init(__PACKAGE__, @_) }
  0            
10              
11             1;
12              
13             __END__