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   1408 use Net::LDAP::Control;
  1         10  
  1         46  
8              
9             our @ISA = qw(Net::LDAP::Control);
10             our $VERSION = '0.04';
11              
12 1     1   6 use strict;
  1         2  
  1         72  
13              
14             sub init {
15 3     3 1 5 my($self) = @_;
16              
17 3         7 delete $self->{asn};
18 3         4 delete $self->{value};
19              
20 3         9 $self;
21             }
22              
23             sub value {
24 2     2 1 3 undef;
25             }
26              
27             1;
28              
29             __END__