File Coverage

blib/lib/App/JobLog.pm
Criterion Covered Total %
statement 4 5 80.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 2 2 100.0
total 8 10 80.0


line stmt bran cond sub pod time code
1             package App::JobLog;
2             $App::JobLog::VERSION = '1.039';
3 5     5   153345 use App::Cmd::Setup -app;
  5         231114  
  5         44  
4              
5             # ABSTRACT: base of work log application
6              
7 26     26 1 143451 sub allow_any_unambiguous_abbrev { 1 }
8              
9             sub command_groups {
10 0     0 1   'primary',
11             [qw( add done resume when summary edit )],
12             'secondary',
13             [qw( today last note modify truncate vacation configure )],
14             'informational',
15             [qw( help commands info tags parse )]
16             }
17              
18             1;
19              
20             __END__