How to Install and Uninstall perl-Test-NoWarnings Package on openSuSE Tumbleweed

Last updated: May 15,2024

1. Install "perl-Test-NoWarnings" package

Please follow the guidance below to install perl-Test-NoWarnings on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Test-NoWarnings

2. Uninstall "perl-Test-NoWarnings" package

This guide let you learn how to uninstall perl-Test-NoWarnings on openSuSE Tumbleweed:

$ sudo zypper remove perl-Test-NoWarnings

3. Information about the perl-Test-NoWarnings package on openSuSE Tumbleweed

Information for package perl-Test-NoWarnings:
---------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Test-NoWarnings
Version : 1.06-1.13
Arch : noarch
Vendor : openSUSE
Installed Size : 46.4 KiB
Installed : No
Status : not installed
Source package : perl-Test-NoWarnings-1.06-1.13.src
Upstream URL : https://metacpan.org/release/Test-NoWarnings
Summary : Make sure you didn't emit any warnings while testing
Description :
In general, your tests shouldn't produce warnings. This modules causes any
warnings to be captured and stored. It automatically adds an extra test
that will run when your script ends to check that there were no warnings.
If there were any warnings, the test will give a "not ok" and diagnostics
of where, when and what the warning was, including a stack trace of what
was going on when the it occurred.
If some of your tests *are supposed to* produce warnings then you should be
capturing and checking them with Test::Warn, that way Test::NoWarnings will
not see them and so not complain.
The test is run by an 'END' block in Test::NoWarnings. It will not be run
when any forked children exit.