DNS-NIOS
view release on metacpan or search on metacpan
"IPC::Open3" : "0",
"JSON" : "0",
"LWP::UserAgent" : "0",
"List::Util" : "1.33",
"MIME::Base64" : "0",
"Mojolicious" : "0",
"Mojolicious::Plugin::BasicAuth" : "0",
"Net::EmptyPort" : "0",
"Role::Tiny" : "0",
"Test::Deep::NoTest" : "0",
"Test::Fatal" : "0",
"Test::More" : "0.98",
"Try::Tiny" : "0",
"URI" : "0",
"URI::QueryParam" : "0",
"namespace::clean" : "0",
"perl" : "5.008008",
"strictures" : "2.000006"
}
}
},
IPC::Open3: '0'
JSON: '0'
LWP::UserAgent: '0'
List::Util: '1.33'
MIME::Base64: '0'
Mojolicious: '0'
Mojolicious::Plugin::BasicAuth: '0'
Net::EmptyPort: '0'
Role::Tiny: '0'
Test::Deep::NoTest: '0'
Test::Fatal: '0'
Test::More: '0.98'
Try::Tiny: '0'
URI: '0'
URI::QueryParam: '0'
namespace::clean: '0'
perl: '5.008008'
strictures: '2.000006'
configure_requires:
ExtUtils::MakeMaker: 6.63_03
Module::Build::Tiny: '0.034'
Makefile.PL view on Meta::CPAN
"IPC::Open3" => 0,
"JSON" => 0,
"LWP::UserAgent" => 0,
"List::Util" => "1.33",
"MIME::Base64" => 0,
"Mojolicious" => 0,
"Mojolicious::Plugin::BasicAuth" => 0,
"Net::EmptyPort" => 0,
"Role::Tiny" => 0,
"Test::Deep::NoTest" => 0,
"Test::Fatal" => 0,
"Test::More" => "0.98",
"Try::Tiny" => 0,
"URI" => 0,
"URI::QueryParam" => 0,
"namespace::clean" => 0,
"strictures" => "2.000006"
},
"VERSION" => "0.005",
"test" => {
"TESTS" => "t/*.t"
Makefile.PL view on Meta::CPAN
"IPC::Open3" => 0,
"JSON" => 0,
"LWP::UserAgent" => 0,
"List::Util" => "1.33",
"MIME::Base64" => 0,
"Mojolicious" => 0,
"Mojolicious::Plugin::BasicAuth" => 0,
"Net::EmptyPort" => 0,
"Role::Tiny" => 0,
"Test::Deep::NoTest" => 0,
"Test::Fatal" => 0,
"Test::More" => "0.98",
"Try::Tiny" => 0,
"URI" => 0,
"URI::QueryParam" => 0,
"namespace::clean" => 0,
"strictures" => "2.000006"
);
unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
List::Util = 1.33
LWP::UserAgent = 0
MIME::Base64 = 0
Mojolicious = 0
Mojolicious::Plugin::BasicAuth = 0
namespace::clean = 0
Net::EmptyPort = 0
Role::Tiny = 0
strictures = 2.000006
Test::Deep::NoTest = 0
Test::Fatal = 0
Test::More = 0.98
Try::Tiny = 0
URI = 0
URI::QueryParam = 0
[Prereqs / DevelopRequires]
Perl::Critic = 0
Perl::Tidy = 0
[PerlTidy]
perltidyrc = xt/perltidy.rc
[Test::Perl::Critic]
t/01-basic.t view on Meta::CPAN
#
# This is free software, licensed under:
#
# The Artistic License 2.0 (GPL Compatible)
#
use strictures 2;
use DNS::NIOS;
use Test::More;
use Test::Fatal;
like(
exception { my $n = DNS::NIOS->new() },
qr/\w+ is required!/,
'Missing required connection parameters',
);
like(
exception {
my $n = DNS::NIOS->new(
t/02-low-level.t view on Meta::CPAN
#
# This is free software, licensed under:
#
# The Artistic License 2.0 (GPL Compatible)
#
use strictures 2;
use DNS::NIOS;
use Test::Fatal;
use Test::More;
use lib 't/tlib';
use Test::SpawnNIOS;
if ( $] < 5.020 ) {
plan skip_all => 'wrong version';
}
my $nios = Test::SpawnNIOS->nios();
t/03-api-methods.t view on Meta::CPAN
#
# This is free software, licensed under:
#
# The Artistic License 2.0 (GPL Compatible)
#
use strictures 2;
use DNS::NIOS;
use Test::Fatal;
use Test::More;
use lib 't/tlib';
use Test::SpawnNIOS;
if ( $] < 5.020 ) {
plan skip_all => 'wrong version';
}
my $nios = Test::SpawnNIOS->nios();
t/04-auto-pager.t view on Meta::CPAN
#
# This is free software, licensed under:
#
# The Artistic License 2.0 (GPL Compatible)
#
use strictures 2;
use DNS::NIOS;
use Test::Fatal;
use Test::More;
use lib 't/tlib';
use Test::SpawnNIOS;
if ( $] < 5.020 ) {
plan skip_all => 'wrong version';
}
my $nios = Test::SpawnNIOS->nios();
( run in 2.457 seconds using v1.01-cache-2.11-cpan-54e63673c56 )