File Coverage

blib/lib/App/LDAP/Command.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;
2              
3 3     3   18 use Modern::Perl;
  3         5  
  3         24  
4              
5 3     3   2001 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;