Configd
view release on metacpan or search on metacpan
"warnings" : "0"
}
},
"test" : {
"requires" : {
"Exporter" : "0",
"File::Spec" : "0",
"FindBin::libs" : "0",
"IO::Handle" : "0",
"IPC::Open3" : "0",
"Test::Fatal" : "0",
"Test::MockModule" : "0",
"Test::More" : "0"
}
}
},
"provides" : {
"Configd" : {
"file" : "lib/Configd.pm",
"version" : "0.002"
},
---
abstract: 'Give software without a conf.d one anyway.'
author:
- 'George S. Baugh <george@troglodyne.net>'
build_requires:
Exporter: '0'
File::Spec: '0'
FindBin::libs: '0'
IO::Handle: '0'
IPC::Open3: '0'
Test::Fatal: '0'
Test::MockModule: '0'
Test::More: '0'
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.037, CPAN::Meta::Converter version 2.150013'
license: mit
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
Makefile.PL view on Meta::CPAN
"re" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Exporter" => 0,
"File::Spec" => 0,
"FindBin::libs" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::Fatal" => 0,
"Test::MockModule" => 0,
"Test::More" => 0
},
"VERSION" => "0.002",
"test" => {
"TESTS" => "t/*.t"
}
);
Makefile.PL view on Meta::CPAN
"File::Path" => 0,
"File::Spec" => 0,
"File::Temp" => 0,
"FindBin" => 0,
"FindBin::libs" => 0,
"Getopt::Long" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Module::Load" => 0,
"Pod::Usage" => 0,
"Test::Fatal" => 0,
"Test::MockModule" => 0,
"Test::More" => 0,
"lib" => 0,
"parent" => 0,
"re" => 0,
"strict" => 0,
"warnings" => 0
);
t/Configd-Language-postfix.t view on Meta::CPAN
use re '/aa';
=head1 NAME
t/Configd-Language-postfix.t - reading main.cf and master.cf, and what happens
when two fragments have something to say about the same parameter
=cut
use Test::More;
use Test::Fatal qw{exception};
use FindBin::libs;
use Configd::Language::postfix(); ## no critic (ProhibitUnusedImports)
my $postfix = 'Configd::Language::postfix'->new();
sub value_of {
my ( $directives, $key ) = @_;
my ($found) = grep { defined $_->{key} && $_->{key} eq $key } @$directives;
t/Configd.t view on Meta::CPAN
use re '/aa';
=head1 NAME
t/Configd.t - adopting a file, generating it from its fragments, wrapping the
service and handing it all back
=cut
use Test::More;
use Test::Fatal qw{exception};
use FindBin::libs;
use Test::Configd qw{scratch fragment};
use Configd();
use Configd::Unit();
use Configd::Language();
use Configd::Language::opendkim(); ## no critic (ProhibitUnusedImports)
use Configd::Language::opendmarc(); ## no critic (ProhibitUnusedImports)
( run in 3.236 seconds using v1.01-cache-2.11-cpan-54e63673c56 )