blib/lib/Plient/Protocol/HTTP.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 6 | 8 | 75.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 4 | 50.0 |
pod | 0 | 2 | 0.0 |
total | 8 | 14 | 57.1 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Plient::Protocol::HTTP; | ||||||
2 | |||||||
3 | 1 | 1 | 2419 | use warnings; | |||
1 | 3 | ||||||
1 | 38 | ||||||
4 | 1 | 1 | 6 | use strict; | |||
1 | 3 | ||||||
1 | 114 | ||||||
5 | require Plient::Protocol unless $Plient::bundle_mode; | ||||||
6 | our @ISA = 'Plient::Protocol'; | ||||||
7 | |||||||
8 | 0 | 0 | 0 | sub prefix { 'http' } | |||
9 | 0 | 0 | 0 | sub methods { qw/get post head/ } | |||
10 | |||||||
11 | 1; | ||||||
12 | |||||||
13 | __END__ |