File Coverage

blib/lib/Acme/CPANModules/ListsOfWordsAndNames.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Acme::CPANModules::ListsOfWordsAndNames;
2              
3 1     1   257701 use strict;
  1         2  
  1         94  
4              
5             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
6             our $DATE = '2023-10-29'; # DATE
7             our $DIST = 'Acme-CPANModules-ListsOfWordsAndNames'; # DIST
8             our $VERSION = '0.002'; # VERSION
9              
10 1     1   7 use strict;
  1         3  
  1         30  
11 1     1   693 use Acme::CPANModulesUtil::Misc;
  1         607  
  1         123  
12              
13             our $LIST = {
14             summary => 'List of modules that contain lists of words and names',
15             description => <<'_',
16              
17             The following namespaces are for modules that contain lists of words and names:
18              
19             modules usually contain dictionary words, originally
20             created to be source of words for word games e.g. hangman.
21              
22             Instead of words, modules contain phrases. These
23             are also usually used for games like hangman.
24              
25             modules contains lists of words and are more general than
26             Games::Words::Wordlist::*.
27              
28             modules (themes) contain list of names that are suited
29             for varible names, etc. They range from movie/TV characters, people names, to
30             plants, dishes, and so on.
31              
32             _
33             };
34              
35             Acme::CPANModulesUtil::Misc::populate_entries_from_module_links_in_description;
36              
37             1;
38             # ABSTRACT: List of modules that contain lists of words and names
39              
40             __END__