File Coverage

blib/lib/AsposeWordsCloud/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 AsposeWordsCloud::Configuration;
2              
3 1     1   5 use strict;
  1         2  
  1         24  
4 1     1   5 use warnings;
  1         2  
  1         20  
5 1     1   4 use utf8;
  1         2  
  1         12  
6              
7 1     1   21 use Log::Any qw($log);
  1         2  
  1         4  
8 1     1   170 use Carp;
  1         2  
  1         46  
9              
10 1     1   5 use constant VERSION => '1.0.1';
  1         2  
  1         125  
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              
23             1;