File Coverage

blib/lib/App/LDAP/Command/Help.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::Help;
2              
3 1     1   5 use Modern::Perl;
  1         2  
  1         9  
4              
5 1     1   679 use Moose;
  0            
  0            
6              
7             with 'App::LDAP::Role::Command';
8              
9             sub run {
10             App::LDAP::Command->new->run;
11             }
12              
13             1;
14