File Coverage

blib/lib/App/LDAP/Command/Add.pm
Criterion Covered Total %
statement 4 6 66.6
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 8 75.0


line stmt bran cond sub pod time code
1             package App::LDAP::Command::Add;
2              
3 1     1   5 use Modern::Perl;
  1         2  
  1         10  
4              
5 1     1   734 use Moose;
  0            
  0            
6              
7             with qw( App::LDAP::Role::Command
8             App::LDAP::Role::Stem );
9              
10             sub run {
11             my ($self, ) = @_;
12             }
13              
14             __PACKAGE__->meta->make_immutable;
15             no Moose;
16              
17             1;
18