App-ptimeout

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Capture::Tiny" : "0",
            "Proc::ProcessTable" : "0.634",
            "Test::Differences" : "0",
            "Test::More" : "0.88"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/DrHyde/perl-modules-App-ptimeout/issues"
      },
      "repository" : {

META.yml  view on Meta::CPAN

  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: App-ptimeout
no_index:
  directory:
    - t
    - inc
requires:
  Capture::Tiny: '0'
  Proc::ProcessTable: '0.634'
  Test::Differences: '0'
  Test::More: '0.88'
resources:
  bugtracker: https://github.com/DrHyde/perl-modules-App-ptimeout/issues
  repository: https://github.com/DrHyde/perl-modules-App-ptimeout
version: v1.0.3
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

            bugtracker => 'https://github.com/DrHyde/perl-modules-App-ptimeout/issues'
        }
    },
    VERSION_FROM => 'lib/App/ptimeout.pm',
    EXE_FILES    => [qw(
        bin/ptimeout
    )],
    PREREQ_PM    => {
        Capture::Tiny      => 0,
        Proc::ProcessTable => '0.634',
        Test::Differences  => 0,
        Test::More         => '0.88', # done_testing
    },
);

t/ptimeout.t  view on Meta::CPAN

use strict;
use warnings;

use Capture::Tiny qw(capture);
use Config;
use IPC::Open3;
use Symbol qw(gensym);
use Test::Differences;
use Test::More;

my @perl = (
    $Config{perlpath},
    (map { ('-I', $_) } @INC),
    '-MApp::ptimeout',
    '-e',
    'App::ptimeout::_run(@ARGV)',
);



( run in 1.497 second using v1.01-cache-2.11-cpan-6aa56a78535 )