File: | lib/Code/Statistics/App/Command.pm |
Coverage: | 100.0% |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | 2 2 2 | 0 0 0 | use strict; | ||||
2 | 2 2 2 | 0 0 0 | use warnings; | ||||
3 | |||||||
4 | package 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 | |||||||
14 | sub cstat { | ||||||
15 | 6 | 0 | return shift->app->cstat( @_ ); | ||||
16 | } | ||||||
17 | |||||||
18 | 1; |