File Coverage

blib/lib/Devel/Command/HelloWorld.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 17 20 85.0


line stmt bran cond sub pod time code
1             package Devel::Command::HelloWorld;
2              
3 1     1   1563 use 5.006;
  1         3  
  1         30  
4 1     1   5 use strict;
  1         2  
  1         24  
5 1     1   4 use warnings;
  1         1  
  1         33  
6              
7 1     1   4 use base qw(Devel::Command);
  1         1  
  1         134  
8              
9             our $VERSION = '0.01';
10              
11             sub command {
12 0     0 1   print DB::OUT "Hello world!\n";
13 0           1;
14             }
15              
16             1;
17             __END__