Logoj0ke.net Open Build Service > Projects > server:monitoring > nagios-plugins-nwc-health > Binaries > nagios-plugins-nwc-health-8... > Dependencies
Sign Up | Log In

Dependency of nagios-plugins-nwc-health-8.0-1.1.src.rpm

Name: perl-Test-Most

Project: openSUSE_13.2

Repository: oss

Title: Most commonly needed test functions and features

Description:
the Test::Most manpage exists to reduce boilerplate and to make your
testing life easier. We provide "one stop shopping" for most commonly used
testing modules. In fact, we often require the latest versions so that you
get bug fixes through the Test::Most manpage and don't have to keep
upgrading these modules separately.

This module provides you with the most commonly used testing functions,
along with automatically turning on strict and warning and gives you a bit
more fine-grained control over your test suite.

use Test::Most tests => 4, 'die';

ok 1, 'Normal calls to ok() should succeed';
is 2, 2, '... as should all passing tests';
eq_or_diff [3], [4], '... but failing tests should die';
ok 4, '... will never get to here';

As you can see, the 'eq_or_diff' test will fail. Because 'die' is in the
import list, the test program will halt at that point.

If you do not want strict and warnings enabled, you must explicitly disable
them. Thus, you must be explicit about what you want and no longer need to
worry about accidentally forgetting them.

use Test::Most tests => 4;
no strict;
no warnings;

Version: 0.33

Release: 2.1.3

Architecture: noarch

Size: 26.8 KB

Build Time: 2014-10-06 17:55:43 +0200 (over 9 years ago)

Provides

Symbol Required by
perl(Test::Most) = 0.33
perl(Test::Most::Exception)...
perl-Test-Most = 0.33-2.1.3

Requires

Symbol Provided by
perl(:MODULE_COMPAT_5.20.1) perl
perl(Exception::Class) >= 1.14 perl-Exception-Class
perl(Test::Deep) >= 0.106 perl-Test-Deep
perl(Test::Differences) >= ... perl-Test-Differences
perl(Test::Exception) >= 0.31 perl-Test-Exception
perl(Test::Harness) >= 3.21 perl
perl(Test::More) >= 0.88 perl perl-Test-Simple
perl(Test::Warn) >= 0.23 perl-Test-Warn