How to Install and Uninstall perl-Carp-Assert-More Package on openSuSE Tumbleweed

Last updated: November 07,2024

1. Install "perl-Carp-Assert-More" package

This guide covers the steps necessary to install perl-Carp-Assert-More on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Carp-Assert-More

2. Uninstall "perl-Carp-Assert-More" package

Please follow the step by step instructions below to uninstall perl-Carp-Assert-More on openSuSE Tumbleweed:

$ sudo zypper remove perl-Carp-Assert-More

3. Information about the perl-Carp-Assert-More package on openSuSE Tumbleweed

Information for package perl-Carp-Assert-More:
----------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Carp-Assert-More
Version : 2.3.0-1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 52.4 KiB
Installed : No
Status : not installed
Source package : perl-Carp-Assert-More-2.3.0-1.4.src
Upstream URL : https://metacpan.org/release/Carp-Assert-More
Summary : Convenience assertions for common situations
Description :
Carp::Assert::More is a convenient set of assertions to make the habit of
writing assertions even easier.
Everything in here is effectively syntactic sugar. There's no technical
difference between calling one of these functions:
assert_datetime( $foo );
assert_isa( $foo, 'DateTime' );
that are provided by Carp::Assert::More and calling these assertions from
Carp::Assert
assert( defined $foo );
assert( ref($foo) eq 'DateTime' );
My intent here is to make common assertions easy so that we as programmers
have no excuse to not use them.