File Coverage

lib/Pcore/Util/URI/http.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Pcore::Util::URI::http;
2              
3 3     3   20 use Pcore -class;
  3         8  
  3         19  
4              
5             extends qw[Pcore::Util::URI];
6              
7             with qw[Pcore::Util::URI::Web2];
8              
9             has '+is_http' => ( default => 1 );
10             has '+default_port' => ( default => 80 );
11              
12             1;
13             __END__
14             =pod
15              
16             =encoding utf8
17              
18             =head1 NAME
19              
20             Pcore::Util::URI::http
21              
22             =head1 SYNOPSIS
23              
24             =head1 DESCRIPTION
25              
26             =head1 ATTRIBUTES
27              
28             =head1 METHODS
29              
30             =head1 SEE ALSO
31              
32             =cut