File Coverage

blib/lib/AsposeEmailCloud/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 AsposeEmailCloud::Configuration;
2              
3 1     1   8 use strict;
  1         3  
  1         35  
4 1     1   8 use warnings;
  1         3  
  1         48  
5 1     1   6 use utf8;
  1         2  
  1         3  
6              
7 1     1   29 use Log::Any qw($log);
  1         2  
  1         12  
8 1     1   162 use Carp;
  1         2  
  1         48  
9              
10 1     1   5 use constant VERSION => '1.03';
  1         2  
  1         143  
11              
12             # class/static variables
13             our $api_client;
14             our $http_timeout = 180;
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;