Amazon-DynamoDB

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

---
abstract: 'A client for Amazon DynamoDB'
author:
  - 'Rusty Conover <rusty@luckydinosaur.com>'
  - 'Tom Molesworth <cpan@entitymodel.com>'
build_requires:
  Data::Dumper: '0'
  IO::Async::Loop: '0'
  IO::Async::SSL: '0'
  String::Random: '0'
  Test::Differences: '0'
  Test::More: '0'
  Test::Most: '0'
  lib: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.034, CPAN::Meta::Converter version 2.150001'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html

Makefile.PL  view on Meta::CPAN

    "Types::Standard" => 0,
    "VM::EC2::Security::CredentialCache" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Data::Dumper" => 0,
    "IO::Async::Loop" => 0,
    "IO::Async::SSL" => 0,
    "String::Random" => 0,
    "Test::Differences" => 0,
    "Test::More" => 0,
    "Test::Most" => 0,
    "lib" => 0
  },
  "VERSION" => "0.35",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

Makefile.PL  view on Meta::CPAN

  "Kavorka" => 0,
  "LWP::UserAgent" => 0,
  "List::MoreUtils" => 0,
  "List::Util" => 0,
  "MIME::Base64" => 0,
  "Module::Load" => 0,
  "Mojo::UserAgent" => 0,
  "Net::Async::HTTP" => "0.30",
  "POSIX" => 0,
  "String::Random" => 0,
  "Test::Differences" => 0,
  "Test::More" => 0,
  "Test::Most" => 0,
  "Type::Library" => 0,
  "Type::Registry" => 0,
  "Type::Utils" => 0,
  "Types::Standard" => 0,
  "VM::EC2::Security::CredentialCache" => 0,
  "lib" => 0,
  "strict" => 0,
  "warnings" => 0

t/02-tables-lsi.t  view on Meta::CPAN

#!perl
use strict;
use warnings;
use lib ('lib', './t');
use Test::Most;
use TestSettings;
use Test::Differences;

use Data::Dumper;

unless ( $ENV{'AMAZON_DYNAMODB_EXPENSIVE_TESTS'} ) {
    plan skip_all => 'Testing this module for real costs money.';
} else {
    plan tests => 9;
}


t/03-simple-get-put.t  view on Meta::CPAN

#!perl
use strict;
use warnings;
use lib ('lib', './t');
use Test::Most;
use Test::Differences;
use TestSettings;
use Data::Dumper;

unless ( $ENV{'AMAZON_DYNAMODB_EXPENSIVE_TESTS'} ) {
    plan skip_all => 'Testing this module for real costs money.';
} else {
    plan tests => 84;
}

bail_on_fail;

t/04-batch-get.t  view on Meta::CPAN

#!perl
use strict;
use warnings;
use lib ('lib', './t');
use Test::Most;
use Test::Differences;
use Data::Dumper;
use TestSettings;
unless ( $ENV{'AMAZON_DYNAMODB_EXPENSIVE_TESTS'} ) {
    plan skip_all => 'Testing this module for real costs money.';
} else {
    plan tests => 4869;
}

bail_on_fail;

t/05-batch-write.t  view on Meta::CPAN

#!perl
use strict;
use warnings;
use lib ('lib', './t');
use Test::Most;
use Test::Differences;
use TestSettings;
use Data::Dumper;

unless ( $ENV{'AMAZON_DYNAMODB_EXPENSIVE_TESTS'} ) {
    plan skip_all => 'Testing this module for real costs money.';
} else {
    plan tests => 2417;
}

bail_on_fail;

t/06-scan.t  view on Meta::CPAN

#!perl
use strict;
use warnings;
use lib ('lib', './t');
use Test::Most;
use Test::Differences;
use List::MoreUtils;
use Data::Dumper;
use TestSettings;

unless ( $ENV{'AMAZON_DYNAMODB_EXPENSIVE_TESTS'} ) {
    plan skip_all => 'Testing this module for real costs money.';
} else {
    plan tests => 40;
}

t/07-query.t  view on Meta::CPAN

#!perl
use strict;
use warnings;
use lib ('lib', './t');
use Test::Most;
use Test::Differences;
use List::MoreUtils;
use Data::Dumper;
use TestSettings;

unless ( $ENV{'AMAZON_DYNAMODB_EXPENSIVE_TESTS'} ) {
    plan skip_all => 'Testing this module for real costs money.';
} else {
    plan tests => 10;
}



( run in 0.410 second using v1.01-cache-2.11-cpan-131fc08a04b )