SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 

perl-Test-Command rpm build for : OpenSuSE. For other distributions click perl-Test-Command.

Name : perl-Test-Command
Version : 0.11 Vendor : openSUSE
Release : bp154.1.1 Date : 2021-07-15 11:15:18
Group : Development/Libraries/Perl Source RPM : perl-Test-Command-0.11-bp154.1.1.src.rpm
Size : 0.03 MB
Packager : https://bugs_opensuse_org
Summary : Test routines for external commands
Description :
\'Test::Command\' intends to bridge the gap between the well tested functions
and objects you choose and their usage in your programs. By examining the
exit status, terminating signal, STDOUT and STDERR of your program you can
determine if it is behaving as expected.

This includes testing the various combinations and permutations of options
and arguments as well as the interactions between the various functions and
objects that make up your program.

The various test functions below can accept either a command string or an
array reference for the first argument. If the command is expressed as a
string it is passed to \'system\' as is. If the command is expressed as an
array reference it is dereferenced and passed to \'system\' as a list. See
\'\'perldoc -f system\'\' for how these may differ.

The final argument for the test functions, \'$name\', is optional. By default
the \'$name\' is a concatenation of the test function name, the command
string and the expected value. This construction is generally sufficient
for identifying a failing test, but you may always specify your own \'$name\'
if desired.

Any of the test functions can be used as instance methods on a
\'Test::Command\' object. This is done by dropping the initial \'$cmd\'
argument and instead using arrow notation.

All of the following \'exit_is_num\' calls are equivalent.

exit_is_num(\'true\', 0);
exit_is_num(\'true\', 0, \'exit_is_num: true, 0\');
exit_is_num([\'true\'], 0);
exit_is_num([\'true\'], 0, \'exit_is_num: true, 0\');

my $cmd = Test::Command->new( cmd => \'true\' );

exit_is_num($cmd, 0);
exit_is_num($cmd, 0, \'exit_is_num: true, 0\');
$cmd->exit_is_num(0);
$cmd->exit_is_num(0, \'exit_is_num: true, 0\');

$cmd = Test::Command->new( cmd => [\'true\'] );

exit_is_num($cmd, 0);
exit_is_num($cmd, 0, \'exit_is_num: true, 0\');
$cmd->exit_is_num(0);
$cmd->exit_is_num(0, \'exit_is_num: true, 0\');

RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/openSUSE:/Backports:/SLE-15-SP4/step/noarch

Content of RPM  Changelog  Provides Requires

Download
ftp.icm.edu.pl  perl-Test-Command-0.11-bp154.1.1.noarch.rpm
ftp.icm.edu.pl  perl-Test-Command-0.11-bp154.1.1.noarch.rpm
     

Provides :
perl(Test::Command)
perl-Test-Command

Requires :
perl(:MODULE_COMPAT_5.26.1)
rpmlib(CompressedFileNames) <= 3.0.4-1
rpmlib(FileDigests) <= 4.6.0-1
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
rpmlib(PayloadIsXz) <= 5.2-1


Content of RPM :
/usr/lib/perl5/vendor_perl/5.26.1/Test
/usr/lib/perl5/vendor_perl/5.26.1/Test/Command.pm
/usr/share/doc/packages/perl-Test-Command
/usr/share/doc/packages/perl-Test-Command/Changes
/usr/share/doc/packages/perl-Test-Command/README
/usr/share/man/man3/Test::Command.3pm.gz

 
ICM