Package: test-command-simple-pm
Version: 0.05
Revision: 1
Type: Perl
Description: Perl module to test external commands
License: Artistic
Maintainer: Justin F. Hallett <thesin@users.sourceforge.net>

Depends: <<
	system-perl,
	test-pod-pm,
	test-pod-coverage-pm
<<

Source: mirror:cpan:modules/by-module/Test/Test-Command-Simple-%v.tar.gz
Source-Checksum: SHA256(4d9dc422f03a620d0c441279f8366d1acf017da9acfdebe68b5a0e5c39c629da)

UseMaxBuildJobs: true

PatchScript: <<
## Stupid test, darwin contains win so it bails
## See: https://rt.cpan.org/Ticket/Display.html?id=104368
perl -pi -e 's,cygwin,darwin,g' t/manifest.t
<<

UpdatePOD: true
DocFiles: Changes README

Homepage: https://metacpan.org/dist/Test-Command-Simple
DescDetail: <<
Test::Command::Simple is a intended to simplify testing of external commands.
It does so by running the command under IPC::Open3, closing the stdin
immediately, and reading everything from the command's stdout and stderr. It
then makes the output available to be tested.

It is not (yet?) as feature-rich as Test::Cmd (in package libtest-cmd-perl),
however the interface to this is much simpler. Tests also plug directly into
the Test::Builder framework, which plays nice with Test::More.
<<