File Coverage

File:lib/Code/Statistics/App/Command.pm
Coverage:100.0%

linestmtbrancondsubpodtimecode
1
2
2
2
0
0
0
use strict;
2
2
2
2
0
0
0
use warnings;
3
4package Code::Statistics::App::Command;
5
6# ABSTRACT: base class for commands
7
8
2
2
2
0
0
0
use App::Cmd::Setup -command;
9
10 - 12
=head2 cstat
    Dispatches to the Code::Statistics object creation routine.
=cut
13
14sub cstat {
15
6
0
    return shift->app->cstat( @_ );
16}
17
181;