File Coverage

blib/lib/AsposeStorageCloud/Configuration.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package AsposeStorageCloud::Configuration;
2              
3 1     1   10 use strict;
  1         3  
  1         34  
4 1     1   8 use warnings;
  1         2  
  1         38  
5 1     1   6 use utf8;
  1         3  
  1         10  
6              
7 1     1   37 use Log::Any qw($log);
  1         3  
  1         30  
8 1     1   349 use Carp;
  1         3  
  1         84  
9              
10 1     1   10 use constant VERSION => '1.03';
  1         2  
  1         186  
11              
12             # class/static variables
13             our $api_client;
14             our $http_timeout = 300;
15             our $http_user_agent = 'Aspose-Cloud-SDK-Perl-Agent';
16             our $debug = 0;
17              
18             # authenticaiton setting
19             our $app_sid;
20             our $api_key;
21             our $api_server = 'http://api.aspose.cloud/v1.1';
22             1;