File Coverage

blib/lib/Acme/CPANModules/ColorEnv.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::ColorEnv;
2              
3 1     1   477598 use strict;
  1         3  
  1         158  
4              
5             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
6             our $DATE = '2023-08-06'; # DATE
7             our $DIST = 'Acme-CPANModules-ColorEnv'; # DIST
8             our $VERSION = '0.002'; # VERSION
9              
10             our $LIST = {
11             summary => "List of modules that observe environment variable (other than ".
12             "NO_COLOR/COLOR) to disable/enable colored output",
13             description => <<'_',
14              
15             This is a list of modules that observe some environment variable to
16             disable/enable colored output, but does not follow either the NO_COLOR
17             convention or the COLOR convention.
18              
19             If you know of other modules that should be listed here, please contact me.
20              
21             _
22             entries => [
23             {module=>'Term::ANSIColor', env=>'ANSI_COLORS_DISABLED'},
24             ],
25             links => [
26             {url=>'pm:Acme::CPANModules::NO_COLOR'},
27             {url=>'pm:Acme::CPANModules::COLOR'},
28             ],
29             };
30              
31             1;
32             # ABSTRACT: List of modules that observe environment variable (other than NO_COLOR/COLOR) to disable/enable colored output
33              
34             __END__