File Coverage

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   54696 use warnings;
  2         12  
  2         57  
5 2     2   9 use strict;
  2         2  
  2         38  
6              
7 2     2   687 use parent 'GraphQL::Client::http';
  2         501  
  2         9  
8              
9             our $VERSION = '0.605'; # VERSION
10              
11             sub new {
12 1     1 1 2 my $class = shift;
13 1         3 GraphQL::Client::http->new(@_);
14             }
15              
16             1;
17              
18             __END__