Hash-Map
view release on metacpan or search on metacpan
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "Hash-Map",
"prereqs" : {
"build" : {
"requires" : {
"Test::Differences" : "0.60",
"Test::More" : "0",
"Test::NoWarnings" : "1.03"
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.42"
}
},
"runtime" : {
---
abstract: 'Hash::Map - Manipulate hashes map like'
author:
- 'Steffen Winkler <steffenw at cpan.org>'
build_requires:
Test::Differences: '0.60'
Test::More: '0'
Test::NoWarnings: '1.03'
configure_requires:
Module::Build: '0.42'
dynamic_config: 1
generated_by: 'Module::Build version 0.4218, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
Makefile.PL view on Meta::CPAN
'NAME' => 'Hash::Map',
'PL_FILES' => {},
'PREREQ_PM' => {
'Test::More' => 0,
'Clone' => 0,
'Scalar::Util' => 0,
'version' => 0,
'Carp' => 0,
'Test::NoWarnings' => '1.03',
'parent' => 0,
'Test::Differences' => '0.60',
'Try::Tiny' => 0,
'Exporter::Tiny' => 0
},
'EXE_FILES' => [],
'VERSION_FROM' => 'lib/Hash/Map.pm'
)
;
t/01_oo_style.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More tests => 85;
use Test::NoWarnings;
use Test::Differences;
BEGIN {
require_ok('Hash::Map');
}
note 'constructors';
{
my $package = 'Hash::Map';
isa_ok(
scalar $package->new,
t/02_functional_style.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More tests => 8 + 1;
use Test::NoWarnings;
use Test::Differences;
BEGIN {
use_ok( 'Hash::Map', qw(hash_map hashref_map) );
}
eq_or_diff(
{
hash_map(
{
a => 11,
t/11_test_examples.t view on Meta::CPAN
#!perl
use strict;
use warnings;
use Test::More;
use Test::Differences;
use Cwd qw(getcwd chdir);
use English qw(-no_match_vars $CHILD_ERROR);
$ENV{AUTHOR_TESTING} or plan(
skip_all => 'Set $ENV{AUTHOR_TESTING} to run this test.'
);
plan(tests => 2);
my @data = (
( run in 0.580 second using v1.01-cache-2.11-cpan-e1769b4cff6 )