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   772 use strict;
  1         2  
  1         40  
2 1     1   6 use warnings;
  1         1  
  1         62  
3              
4             package Code::Statistics::App::Command;
5             {
6             $Code::Statistics::App::Command::VERSION = '1.112980';
7             }
8              
9             # ABSTRACT: base class for commands
10              
11 1     1   6 use App::Cmd::Setup -command;
  1         3  
  1         8  
12              
13              
14             sub cstat {
15 3     3 1 23 return shift->app->cstat( @_ );
16             }
17              
18             1;
19              
20             __END__
21             =pod
22              
23             =head1 NAME
24              
25             Code::Statistics::App::Command - base class for commands
26              
27             =head1 VERSION
28              
29             version 1.112980
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             This software is Copyright (c) 2010 by Christian Walde.
41              
42             This is free software, licensed under:
43              
44             DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE, Version 2, December 2004
45              
46             =cut
47