File Coverage

blib/lib/Net/LDAP/Gateway.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Net::LDAP::Gateway;
2              
3             our $VERSION = '0.03';
4              
5 2     2   21493 use strict;
  2         4  
  2         59  
6 2     2   9 use warnings;
  2         3  
  2         233  
7              
8             require Exporter;
9             our @ISA = qw(Exporter);
10             our @EXPORT = qw( ldap_peek_message
11              
12             ldap_shift_message
13              
14             ldap_pack_bind_request
15             ldap_pack_bind_response
16             ldap_pack_unbind_request
17             ldap_pack_search_request
18             ldap_pack_search_entry_response
19             ldap_pack_search_reference_response
20             ldap_pack_search_done_response
21             ldap_pack_modify_request
22             ldap_pack_modify_response
23             ldap_pack_add_request
24             ldap_pack_add_response
25             ldap_pack_delete_request
26             ldap_pack_delete_response
27             ldap_pack_modify_dn_request
28             ldap_pack_modify_dn_response
29             ldap_pack_compare_request
30             ldap_pack_compare_response
31             ldap_pack_abandon_request
32             ldap_pack_extended_request
33             ldap_pack_extended_response
34             ldap_pack_intermediate_response
35              
36             ldap_pack_message_ref
37             ldap_pack_bind_request_ref
38             ldap_pack_bind_response_ref
39             ldap_pack_unbind_request_ref
40             ldap_pack_search_request_ref
41             ldap_pack_search_entry_response_ref
42             ldap_pack_search_reference_response_ref
43             ldap_pack_search_done_response_ref
44             ldap_pack_modify_request_ref
45             ldap_pack_modify_response_ref
46             ldap_pack_add_request_ref
47             ldap_pack_add_response_ref
48             ldap_pack_delete_request_ref
49             ldap_pack_delete_response_ref
50             ldap_pack_modify_dn_request_ref
51             ldap_pack_modify_dn_response_ref
52             ldap_pack_compare_request_ref
53             ldap_pack_compare_response_ref
54             ldap_pack_abandon_request_ref
55             ldap_pack_extended_request_ref
56             ldap_pack_extended_response_ref
57             ldap_pack_intermediate_response_ref
58              
59             ldap_dn_normalize
60             );
61              
62             require XSLoader;
63             XSLoader::load('Net::LDAP::Gateway', $VERSION);
64              
65              
66             1;
67             __END__