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

Last updated: May 17,2024

1. Install "perl-Test-Class-Most" package

Please follow the step by step instructions below to install perl-Test-Class-Most on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Test-Class-Most

2. Uninstall "perl-Test-Class-Most" package

This guide covers the steps necessary to uninstall perl-Test-Class-Most on openSuSE Tumbleweed:

$ sudo zypper remove perl-Test-Class-Most

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

Information for package perl-Test-Class-Most:
---------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Test-Class-Most
Version : 0.08-1.27
Arch : noarch
Vendor : openSUSE
Installed Size : 14.0 KiB
Installed : No
Status : not installed
Source package : perl-Test-Class-Most-0.08-1.27.src
Upstream URL : http://search.cpan.org/dist/Test-Class-Most/
Summary : Test Classes the easy way
Description :
When people write test classes with the excellent 'Test::Class', you often
see the following at the top of the code:
package Some::Test::Class;
use strict;
use warnings;
use base 'My::Test::Class';
use Test::More;
use Test::Exception;
That's a lot of boilerplate and I don't like boilerplate. So now you can do
this:
use Test::Class::Most parent => 'My::Test::Class';
That automatically imports the strict manpage and the warnings manpage for
you. It also gives you all of the testing goodness from the Test::Most
manpage.