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   68006 use warnings;
  2         9  
  2         67  
5 2     2   10 use strict;
  2         4  
  2         58  
6              
7 2     2   947 use parent 'GraphQL::Client::http';
  2         598  
  2         11  
8              
9             our $VERSION = '0.604'; # VERSION
10              
11             sub new {
12 1     1 1 4 my $class = shift;
13 1         4 GraphQL::Client::http->new(@_);
14             }
15              
16             1;
17              
18             __END__