File Coverage

lib/Net/LDAP/SimpleServer/Constant.pm
Criterion Covered Total %
statement 27 27 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod n/a
total 36 36 100.0


line stmt bran cond sub pod time code
1             package Net::LDAP::SimpleServer::Constant;
2              
3 26     26   66832 use strict;
  26         76  
  26         843  
4 26     26   171 use warnings;
  26         56  
  26         1335  
5              
6             # ABSTRACT: Constants used in Net::LDAP::SimpleServer
7              
8             our $VERSION = '0.0.20'; # VERSION
9              
10 26     26   183 use Exporter 'import';
  26         55  
  26         1474  
11             our @EXPORT = qw(SCOPE_BASEOBJ SCOPE_ONELEVEL SCOPE_SUBTREE
12             USER_PW_NONE USER_PW_ALL USER_PW_MD5);
13              
14 26     26   183 use constant SCOPE_BASEOBJ => 0;
  26         81  
  26         2254  
15 26     26   373 use constant SCOPE_ONELEVEL => 1;
  26         75  
  26         1426  
16 26     26   166 use constant SCOPE_SUBTREE => 2;
  26         70  
  26         1451  
17              
18 26     26   184 use constant USER_PW_NONE => 'none';
  26         59  
  26         1395  
19 26     26   182 use constant USER_PW_ALL => 'all';
  26         60  
  26         1290  
20 26     26   211 use constant USER_PW_MD5 => 'md5';
  26         71  
  26         1228  
21              
22             1; # Magic true value required at end of module
23              
24             __END__