File Coverage

blib/lib/App/Presto/CommandHasHelp.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 6 100.0


line stmt bran cond sub pod time code
1             package App::Presto::CommandHasHelp;
2             BEGIN {
3 1     1   957 $App::Presto::CommandHasHelp::AUTHORITY = 'cpan:BPHILLIPS';
4             }
5             {
6             $App::Presto::CommandHasHelp::VERSION = '0.009';
7             }
8              
9             # ABSTRACT: Role for command modules that have help defined
10              
11 1     1   18 use Moo::Role;
  1         2  
  1         7  
12              
13             requires 'help_categories';
14              
15             1;
16              
17             __END__