IPC-Capture
view release on metacpan or search on metacpan
File::Basename: 0
File::Path: 0
File::Spec: 0
File::Temp: 0
FindBin: 0
Hash::Util: 0
IPC::Cmd: 0
List::MoreUtils: 0
List::Util: 0
strict: 0
Test::Differences: 0
Test::More: 0
Text::Diff: 0.34
warnings: 0
distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.30_01
Makefile.PL view on Meta::CPAN
use 5.008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'IPC::Capture',
VERSION_FROM => 'lib/IPC/Capture.pm', # finds $VERSION
PREREQ_PM => { IPC::Cmd => 0,
Class::Base => 0,
Test::Differences => 0,
Text::Diff => 0.34,
Carp => 0,
Data::Dumper => 0,
Env => 0,
File::Basename => 0,
File::Path => 0,
File::Spec => 0,
File::Temp => 0,
FindBin => 0,
Hash::Util => 0,
IPC::Cmd
Which in turn requires one of:
IPC::Run
IPC::Open3
Some of this module's tests need:
Test::Differences
COPYRIGHT AND LICENCE
Put the correct copyright and licence information here.
Copyright (C) 2008 by Joseph Brenner
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.8 or,
at your option, any later version of Perl 5 you may have available.
t/01-capture_of_stdout_and_stderr.t view on Meta::CPAN
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl IPC-Capture.t'
#########################
use warnings;
use strict;
$|=1;
use Data::Dumper;
use Test::More;
use Test::Differences;
use FindBin qw( $Bin );
use lib "$Bin/../lib";
use lib "$Bin/lib";
plan tests=> 14;
my $DEBUG = 0;
my $CHOMPALOT = 1;
my $PERL = $^X;
( run in 0.485 second using v1.01-cache-2.11-cpan-131fc08a04b )