File Coverage

blib/lib/Acme/CPANModules/MockModules.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::MockModules;
2              
3 1     1   455426 use strict;
  1         10  
  1         162  
4              
5             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
6             our $DATE = '2025-01-02'; # DATE
7             our $DIST = 'Acme-CPANModules-MockModules'; # DIST
8             our $VERSION = '0.004'; # VERSION
9              
10             our $LIST = {
11             summary => 'List of modules that mock other modules',
12             description => <<'MARKDOWN',
13              
14             Not to be confused with modules which you can use to do mock testing.
15              
16             MARKDOWN
17             entries => [
18             {
19             module => 'Locale::TextDomain::IfEnv',
20             mocked_module => 'Locale::TextDomain',
21             },
22             {
23             module => 'Locale::TextDomain::UTF8::IfEnv',
24             mocked_module => 'Locale::TextDomain::UTF8',
25             },
26             ],
27             };
28              
29             1;
30             # ABSTRACT: List of modules that mock other modules
31              
32             __END__