File Coverage

File:lib/Code/Statistics/App/Command/nop.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::nop;
5
6# ABSTRACT: does nothing
7
8
2
2
2
0
0
0
use Code::Statistics::App -command;
9
10sub abstract { return 'do nothing' }
11
12sub execute {
13    my ( $self, $opt, $arg ) = @_;
14
15    return $self->cstat;
16}
17
181;