File Coverage

lib/Code/Statistics/App/Command.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1 1     1   541 use strict;
  1         1  
  1         25  
2 1     1   5 use warnings;
  1         1  
  1         42  
3              
4             package Code::Statistics::App::Command;
5             $Code::Statistics::App::Command::VERSION = '1.190680';
6             # ABSTRACT: base class for commands
7              
8 1     1   5 use App::Cmd::Setup -command;
  1         1  
  1         6  
9              
10              
11             sub cstat {
12 3     3 1 16 return shift->app->cstat( @_ );
13             }
14              
15             1;
16              
17             __END__
18              
19             =pod
20              
21             =encoding UTF-8
22              
23             =head1 NAME
24              
25             Code::Statistics::App::Command - base class for commands
26              
27             =head1 VERSION
28              
29             version 1.190680
30              
31             =head2 cstat
32             Dispatches to the Code::Statistics object creation routine.
33              
34             =head1 AUTHOR
35              
36             Christian Walde <mithaldu@yahoo.de>
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40              
41             Christian Walde has dedicated the work to the Commons by waiving all of his
42             or her rights to the work worldwide under copyright law and all related or
43             neighboring legal rights he or she had in the work, to the extent allowable by
44             law.
45              
46             Works under CC0 do not require attribution. When citing the work, you should
47             not imply endorsement by the author.
48              
49             =cut