File Coverage

lib/Net/LDAP/SimpleServer/Constant.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 Net::LDAP::SimpleServer::Constant;
2              
3 19     19   148 use strict;
  19         47  
  19         609  
4 19     19   127 use warnings;
  19         48  
  19         4003  
5              
6             # ABSTRACT: Constants used in Net::LDAP::SimpleServer
7              
8             our $VERSION = '0.0.19'; # VERSION
9              
10 19     19   139 use Exporter 'import';
  19         65  
  19         894  
11             our @EXPORT = qw(SCOPE_BASEOBJ SCOPE_ONELEVEL SCOPE_SUBTREE);
12              
13 19     19   122 use constant SCOPE_BASEOBJ => 0;
  19         34  
  19         1185  
14 19     19   217 use constant SCOPE_ONELEVEL => 1;
  19         42  
  19         842  
15 19     19   114 use constant SCOPE_SUBTREE => 2;
  19         30  
  19         805  
16              
17             1; # Magic true value required at end of module
18              
19             __END__