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