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   64605 use strict;
  26         80  
  26         774  
4 26     26   139 use warnings;
  26         52  
  26         1089  
5              
6             # ABSTRACT: Constants used in Net::LDAP::SimpleServer
7              
8             our $VERSION = '0.0.21'; # VERSION
9              
10 26     26   129 use Exporter 'import';
  26         36  
  26         1007  
11             our @EXPORT = qw(SCOPE_BASEOBJ SCOPE_ONELEVEL SCOPE_SUBTREE
12             USER_PW_NONE USER_PW_ALL USER_PW_MD5);
13              
14 26     26   137 use constant SCOPE_BASEOBJ => 0;
  26         52  
  26         1594  
15 26     26   274 use constant SCOPE_ONELEVEL => 1;
  26         51  
  26         1051  
16 26     26   120 use constant SCOPE_SUBTREE => 2;
  26         51  
  26         981  
17              
18 26     26   128 use constant USER_PW_NONE => 'none';
  26         48  
  26         1180  
19 26     26   155 use constant USER_PW_ALL => 'all';
  26         81  
  26         1037  
20 26     26   145 use constant USER_PW_MD5 => 'md5';
  26         57  
  26         995  
21              
22             1; # Magic true value required at end of module
23              
24             __END__