DBIx-TransactionManager-Distributed

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         "requires" : {
            "DBD::Mock" : "1.45",
            "DBI" : "1.634",
            "Devel::Refcount" : "0.10",
            "ExtUtils::MakeMaker" : "0",
            "File::Spec" : "0",
            "IO::Handle" : "0",
            "IPC::Open3" : "0",
            "Test::CheckDeps" : "0.010",
            "Test::Deep" : "1.120",
            "Test::Fatal" : "0.014",
            "Test::More" : "0.98",
            "Test::Refcount" : "0.08",
            "Test::Warnings" : "0.026"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/binary-com/perl-DBIx-TransactionManager-Distributed/issues"

META.yml  view on Meta::CPAN

build_requires:
  DBD::Mock: '1.45'
  DBI: '1.634'
  Devel::Refcount: '0.10'
  ExtUtils::MakeMaker: '0'
  File::Spec: '0'
  IO::Handle: '0'
  IPC::Open3: '0'
  Test::CheckDeps: '0.010'
  Test::Deep: '1.120'
  Test::Fatal: '0.014'
  Test::More: '0.98'
  Test::Refcount: '0.08'
  Test::Warnings: '0.026'
  perl: '5.010000'
configure_requires:
  ExtUtils::MakeMaker: '6.48'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.005, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:

Makefile.PL  view on Meta::CPAN

  "TEST_REQUIRES" => {
    "DBD::Mock" => "1.45",
    "DBI" => "1.634",
    "Devel::Refcount" => "0.10",
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "IO::Handle" => 0,
    "IPC::Open3" => 0,
    "Test::CheckDeps" => "0.010",
    "Test::Deep" => "1.120",
    "Test::Fatal" => "0.014",
    "Test::More" => "0.98",
    "Test::Refcount" => "0.08",
    "Test::Warnings" => "0.026"
  },
  "VERSION" => "0.02",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

Makefile.PL  view on Meta::CPAN

  "Devel::Refcount" => "0.10",
  "Exporter" => 0,
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "List::UtilsBy" => 0,
  "Scalar::Util" => 0,
  "Test::CheckDeps" => "0.010",
  "Test::Deep" => "1.120",
  "Test::Fatal" => "0.014",
  "Test::More" => "0.98",
  "Test::Refcount" => "0.08",
  "Test::Warnings" => "0.026"
);


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

cpanfile  view on Meta::CPAN


on build => sub {
    requires 'perl', '5.010000';
};

on test => sub {
    requires 'Test::More', '>= 0.98';
    requires 'DBI', '>= 1.634';
    requires 'DBD::Mock', '>= 1.45';
    requires 'Devel::Refcount', '>= 0.10';
    requires 'Test::Fatal', '>= 0.014';
    requires 'Test::Warnings', '>= 0.026';
    requires 'Test::Deep', '>= 1.120';
    requires 'Test::Refcount', '>= 0.08';
};

on develop => sub {
    requires 'Devel::Cover::Report::Coveralls', '>= 0.11';
};

t/00-report-prereqs.dd  view on Meta::CPAN

                   'requires' => {
                                   'DBD::Mock' => '1.45',
                                   'DBI' => '1.634',
                                   'Devel::Refcount' => '0.10',
                                   'ExtUtils::MakeMaker' => '0',
                                   'File::Spec' => '0',
                                   'IO::Handle' => '0',
                                   'IPC::Open3' => '0',
                                   'Test::CheckDeps' => '0.010',
                                   'Test::Deep' => '1.120',
                                   'Test::Fatal' => '0.014',
                                   'Test::More' => '0.98',
                                   'Test::Refcount' => '0.08',
                                   'Test::Warnings' => '0.026'
                                 }
                 }
     };
  $x;
 }

t/01-distributed.t  view on Meta::CPAN

#!perl
use strict;
use warnings;
use Test::More;
use Test::Fatal;
use Test::Warnings qw(warning warnings);
use Test::Deep;
use DBI;
use DBD::Mock;
use DBIx::TransactionManager::Distributed qw(register_dbh release_dbh dbh_is_registered txn register_cached_dbh);
use Scalar::Util qw(refaddr);
use Test::Refcount;

subtest register_dbh => sub {
    my $dbh;



( run in 1.611 second using v1.01-cache-2.11-cpan-54e63673c56 )