File Coverage

blib/lib/Acme/CPANModules/Parse/UnixConfigs.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::Parse::UnixConfigs;
2              
3 1     1   232723 use strict;
  1         2  
  1         94  
4              
5             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
6             our $DATE = '2023-10-31'; # DATE
7             our $DIST = 'Acme-CPANModules-Parse-UnixConfigs'; # DIST
8             our $VERSION = '0.002'; # VERSION
9              
10             our $LIST = {
11             summary => "List of modules that parse Unix config (or related) files",
12             entries => [
13             {module=>'Config::Model'},
14             {module=>'Parse::Hosts', summary=>'Parse /etc/hosts'},
15             {module=>'Parse::Services', summary=>'Parse /etc/services'},
16             {module=>'Parse::Sums', summary=>'Parse checksums file, e.g. MD5SUMS, SHA1SUMS'},
17             {module=>'Data::SSHPubkey', summary=>'Parse SSH public keys'},
18             ],
19             };
20              
21             1;
22             # ABSTRACT: List of modules that parse Unix config (or related) files
23              
24             __END__