DBIx-Class-BatchUpdate

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

---
abstract: 'Update batches of DBIC rows with as few queries as possible'
author:
  - 'Johan Lindstrom <johanl@cpan.org>'
build_requires:
  Test::Differences: '0'
  Test::Exception: '0'
  Test::MockObject: '0'
  Test::More: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.043, CPAN::Meta::Converter version 2.143240'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html

Makefile.PL  view on Meta::CPAN

    "DBIx::Class" => 0,
    "Moo" => 0,
    "Storable" => 0,
    "autobox::Core" => 0,
    "base" => 0,
    "strict" => 0,
    "true" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::Differences" => 0,
    "Test::Exception" => 0,
    "Test::MockObject" => 0,
    "Test::More" => 0
  },
  "VERSION" => "1.004",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Carp" => 0,
  "DBIx::Class" => 0,
  "Moo" => 0,
  "Storable" => 0,
  "Test::Differences" => 0,
  "Test::Exception" => 0,
  "Test::MockObject" => 0,
  "Test::More" => 0,
  "autobox::Core" => 0,
  "base" => 0,
  "strict" => 0,
  "true" => 0,
  "warnings" => 0
);

t/dbix-class-batchupdate-update.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;
use Test::Exception;
use Test::Differences;
use Test::MockObject;

use Storable qw/ thaw /;

use DBIx::Class::BatchUpdate::Update;



my $empty_batch = DBIx::Class::BatchUpdate::Update->new({ rows => [] });



( run in 1.965 second using v1.01-cache-2.11-cpan-39bf76dae61 )