File Coverage

lib/Code/Statistics/App/Command/nop.pm
Criterion Covered Total %
statement 9 12 75.0
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 19 73.6


line stmt bran cond sub pod time code
1 1     1   613 use strict;
  1         2  
  1         36  
2 1     1   6 use warnings;
  1         2  
  1         65  
3              
4             package Code::Statistics::App::Command::nop;
5             {
6             $Code::Statistics::App::Command::nop::VERSION = '1.112980';
7             }
8              
9             # ABSTRACT: does nothing
10              
11 1     1   6 use Code::Statistics::App -command;
  1         4  
  1         8  
12              
13 0     0 1   sub abstract { return 'do nothing' }
14              
15             sub execute {
16 0     0 1   my ( $self, $opt, $arg ) = @_;
17              
18 0           return $self->cstat;
19             }
20              
21             1;
22              
23             __END__
24             =pod
25              
26             =head1 NAME
27              
28             Code::Statistics::App::Command::nop - does nothing
29              
30             =head1 VERSION
31              
32             version 1.112980
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