File Coverage

blib/lib/Acme/CPANModules/QuickGraph.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Acme::CPANModules::QuickGraph;
2              
3 2     2   238625 use strict;
  2         6  
  2         337  
4              
5             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
6             our $DATE = '2023-10-21'; # DATE
7             our $DIST = 'Acme-CPANModules-QuickGraph'; # DIST
8             our $VERSION = '0.001'; # VERSION
9              
10             our $LIST = {
11             summary => 'List of modules/tools to quickly create graph/chart',
12             description => <<'_',
13              
14             When you have some numbers and want to create a graph to visualize them, these
15             modules/tools let you do it without much fuss. Minimal learning curve,
16             no/minimal configuration, and minimum number of keystrokes.
17              
18             _
19             entries => [
20             {
21             module=>'App::AsciiChart',
22             script=>'asciichart',
23             tags=>['cli-tool', 'ascii-chart'],
24             },
25             {
26             module=>'App::GnuplotUtils',
27             script=>'xyplot',
28             tags=>['cli-tool', 'graphical-chart'],
29             },
30             {
31             module=>'App::tchart',
32             script=>'tchart',
33             tags=>['cli-tool', 'ascii-chart'],
34             },
35             ],
36             };
37              
38             1;
39             # ABSTRACT: List of modules/tools to quickly create graph/chart
40              
41             __END__