File Coverage

blib/lib/cli/crosstable.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package cli::crosstable;
2              
3 1     1   58369 use 5.006;
  1         3  
4 1     1   6 use strict;
  1         2  
  1         18  
5 1     1   4 use warnings;
  1         1  
  1         51  
6              
7             =head1 NAME
8              
9             cli::crosstable - A simple script to produce crosstable (2-way contingency table) with various switch options.
10              
11             The command details are shown by as follows:
12              
13             crosstable --help
14              
15             =head1 VERSION
16              
17             Version 1.05
18              
19             =cut
20              
21             our $VERSION = '1.05';
22              
23              
24             =head1 AUTHOR
25              
26             "Toshiyuki Shimono", C<< >>
27              
28              
29             =head1 LICENSE AND COPYRIGHT
30              
31             Copyright 2018 "Toshiyuki Shimono".
32              
33             This program is free software: you can redistribute it and/or modify
34             it under the terms of the GNU General Public License as published by
35             the Free Software Foundation, either version 3 of the License, or
36             (at your option) any later version.
37              
38             This program is distributed in the hope that it will be useful,
39             but WITHOUT ANY WARRANTY; without even the implied warranty of
40             MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41             GNU General Public License for more details.
42              
43             You should have received a copy of the GNU General Public License
44             along with this program. If not, see L.
45              
46              
47             =cut
48              
49             1; # End of cli::crosstable