File Coverage

blib/lib/Net/Azure/EventHubs/Response.pm
Criterion Covered Total %
statement 21 21 100.0
branch 3 4 75.0
condition 2 3 66.6
subroutine 6 6 100.0
pod 1 1 100.0
total 33 35 94.2


line stmt bran cond sub pod time code
1             package Net::Azure::EventHubs::Response;
2 7     7   53 use strict;
  7         22  
  7         226  
3 7     7   44 use warnings;
  7         17  
  7         254  
4              
5 7     7   46 use parent 'HTTP::Response';
  7         17  
  7         46  
6 7     7   62755 use JSON;
  7         70752  
  7         51  
7 7     7   1101 use Carp;
  7         21  
  7         1178  
8              
9             sub as_hashref {
10 2     2 1 1407 my $self = shift;
11 2 50       13 return if !$self->is_success;
12              
13 2         30 my $type = $self->header('Content-Type');
14 2 100 66     121 if ($type && $type =~ /\Aapplication\/json/) {
15 1         38 return JSON->new->utf8(1)->decode($self->content);
16             }
17 1         4 return;
18             }
19              
20             1;
21              
22             =encoding utf-8
23              
24             =head1 NAME
25              
26             Net::Azure::EventHubs::Response - A Response Class for Net::Azure::EventHubs
27              
28             =head1 SYNOPSIS
29              
30             use Net::Azure::EventHubs::Request;
31             use LWP::UserAgent;
32             my $req = Net::Azure::EventHubs::Request->new(GET => 'http://...');
33             $req->agent(LWP::UserAgent->new);
34             my $res = $req->do;
35             my $json_data = $res->as_hashref;
36              
37             =head1 DESCRIPTION
38              
39             Net::Azure::EventHubs::Response is a response class for Net::Azure::EventHubs.
40              
41             It inherits HTTP::Response.
42              
43             =head1 METHODS
44              
45             =head2 as_hashref
46              
47             my $json_data = $res->as_hashref;
48              
49             Return a content data as hashref when content type is 'application/json'. Otherwise, undef is returned.
50              
51             =head1 LICENSE
52              
53             Copyright (C) ytnobody.
54              
55             This library is free software; you can redistribute it and/or modify
56             it under the same terms as Perl itself.
57              
58             =head1 AUTHOR
59              
60             ytnobody Eytnobody@gmail.comE
61              
62             =cut
63