File Coverage

blib/lib/Hub/Config/Base.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Hub::Config::Base;
2 1     1   4 use strict;
  1         2  
  1         33  
3 1     1   5 use Hub qw/:lib/;
  1         2  
  1         5  
4             our $VERSION = '4.00043';
5             our @EXPORT = qw//;
6             our @EXPORT_OK = qw/CONF_BASE/;
7              
8 1         55 use constant CONF_BASE => {
9             'win32' => {
10             'owner_name' => 'Administrators',
11             'group_name' => 'Everyone',
12             'other_name' => 'Everyone',
13             },
14             'parser' => {
15             'max_depth' => 10000,
16             'max_scope_depth' => 100,
17             },
18 1     1   6 };
  1         1  
19              
20             1;