File Coverage

blib/lib/Net/LDAP/Control/ManageDsaIT.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 2 2 100.0
total 17 17 100.0


line stmt bran cond sub pod time code
1             # Copyright (c) 2004 Peter Marschall . All rights reserved.
2             # This program is free software; you can redistribute it and/or
3             # modify it under the same terms as Perl itself.
4              
5             package Net::LDAP::Control::ManageDsaIT;
6              
7 1     1   1571 use Net::LDAP::Control;
  1         2  
  1         44  
8              
9             our @ISA = qw(Net::LDAP::Control);
10             our $VERSION = '0.04';
11              
12 1     1   6 use strict;
  1         2  
  1         60  
13              
14             sub init {
15 2     2 1 3 my($self) = @_;
16              
17 2         18 delete $self->{asn};
18 2         4 delete $self->{value};
19              
20 2         5 $self;
21             }
22              
23             sub value {
24 2     2 1 4 undef;
25             }
26              
27             1;
28              
29             __END__