blib/lib/GraphQL/Client/https.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 11 | 11 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | 1 | 1 | 100.0 |
total | 16 | 16 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package GraphQL::Client::https; | ||||||
2 | # ABSTRACT: GraphQL over HTTPS | ||||||
3 | |||||||
4 | 2 | 2 | 68863 | use warnings; | |||
2 | 9 | ||||||
2 | 69 | ||||||
5 | 2 | 2 | 10 | use strict; | |||
2 | 4 | ||||||
2 | 67 | ||||||
6 | |||||||
7 | 2 | 2 | 925 | use parent 'GraphQL::Client::http'; | |||
2 | 633 | ||||||
2 | 11 | ||||||
8 | |||||||
9 | our $VERSION = '0.603'; # VERSION | ||||||
10 | |||||||
11 | sub new { | ||||||
12 | 1 | 1 | 1 | 4 | my $class = shift; | ||
13 | 1 | 5 | GraphQL::Client::http->new(@_); | ||||
14 | } | ||||||
15 | |||||||
16 | 1; | ||||||
17 | |||||||
18 | __END__ |