YVDHOVE-System
view release on metacpan or search on metacpan
# Before `make install' is performed this script should be runnable with `make test'
# After `make install' it should work as `perl String.t'
#########################
use Test::More tests => 4;
BEGIN { use_ok('YVDHOVE::System', qw(:all)) };
#########################
my($rc, $stdout, $stderr) = execCMD('perl -v', 1, 0);
is($rc, 1, 'execCMD - RC');
like($stdout, qr/This is perl/, 'execCMD - STDOUT');
is($stderr, '', 'execCMD - STDERR');
( run in 1.876 second using v1.01-cache-2.11-cpan-99c4e6809bf )