DBD-Cassandra

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Cassandra::Client" : "0.10",
            "DBI" : "1.621",
            "Devel::GlobalDestruction" : "0",
            "perl" : "5.010",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Ref::Util" : "0",
            "Test::More" : "0",
            "utf8" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "repository" : {
         "type" : "git",
         "url" : "https://github.com/tvdw/perl-dbd-cassandra.git",

META.yml  view on Meta::CPAN

---
abstract: 'DBI database backend for Cassandra'
author:
  - 'Tom van der Woerdt <tvdw@cpan.org>'
build_requires:
  Ref::Util: '0'
  Test::More: '0'
  utf8: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.010, 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

  "MIN_PERL_VERSION" => "5.010",
  "NAME" => "DBD::Cassandra",
  "PREREQ_PM" => {
    "Cassandra::Client" => "0.10",
    "DBI" => "1.621",
    "Devel::GlobalDestruction" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Ref::Util" => 0,
    "Test::More" => 0,
    "utf8" => 0
  },
  "VERSION" => "0.57",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Cassandra::Client" => "0.10",
  "DBI" => "1.621",
  "Devel::GlobalDestruction" => 0,
  "Ref::Util" => 0,
  "Test::More" => 0,
  "strict" => 0,
  "utf8" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};

t/30-types.t  view on Meta::CPAN

use 5.010;
use warnings;
use strict;
use DBI;
use Test::More;
use utf8;
use Ref::Util qw/is_ref/;

my $input= "__as__input";
my $warn= "__warn";

my $type_table= [
    # Type name, test input, test output (undef for error, $input for copying the input, $warn if we expect a perl warning)
    ['ascii',       'asd',  $input],
    ['ascii',       '∫∫',   undef],
    ['bigint',      5,      $input],
    ['bigint',      'asd',  $warn],



( run in 0.272 second using v1.01-cache-2.11-cpan-a5abf4f5562 )