Gearman-Driver

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

---
abstract: 'Manages Gearman workers'
author:
  - 'Johannes Plunien <plu@cpan.org>'
build_requires:
  ExtUtils::MakeMaker: 6.36
  File::Slurp: 0
  File::Temp: 0
  Gearman::Server: 1.10
  Net::Telnet: 0
  Test::Differences: 0
  Test::Exception: 0
  Test::More: 0
  YAML: 0
configure_requires:
  ExtUtils::MakeMaker: 6.36
distribution_type: module
dynamic_config: 1
generated_by: 'Module::Install version 1.06'
license: perl
meta-spec:

Makefile.PL  view on Meta::CPAN

    'Term::ReadKey'              => '2.30',
    'Time::HiRes'                => '1.9715',
    'Try::Tiny'                  => '0.02',
);

test_requires(
    'File::Slurp'       => 0,
    'File::Temp'        => 0,
    'Gearman::Server'   => '1.10',
    'Net::Telnet'       => 0,
    'Test::Differences' => 0,
    'Test::Exception'   => 0,
    'Test::More'        => 0,
    'YAML'              => 0,
);

feature 'Gearman::XS',
  -default      => 0,
  'Gearman::XS' => 0;

my @tests = ( 't/*.t', 't/*/*.t' );

t/011-attribute-parser.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More tests => 28;
use Test::Differences;
use FindBin;
use lib "$FindBin::Bin/lib";
use Gearman::Driver::Worker::AttributeParser;
use Moose::Util qw(apply_all_roles);
use Gearman::Driver::Test::Live::BeginEnd;
use Gearman::Driver::Test::Live::Console;
use Gearman::Driver::Test::Live::DefaultAttributes;
use Gearman::Driver::Test::Live::EncodeDecode;
use Gearman::Driver::Test::Live::MaxIdleTime;
use Gearman::Driver::Test::Live::OverrideAttributes;

t/040-live-console.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More tests => 60;
use Test::Differences;
use FindBin;
use lib "$FindBin::Bin/lib";
use Gearman::Driver::Test;
use Data::Dumper;
$Data::Dumper::Sortkeys = 1;

my $test = Gearman::Driver::Test->new();

$test->prepare('Gearman::Driver::Test::Live::Console');



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