How to Install and Uninstall perl-Carp-Assert-More Package on openSUSE Leap

Last updated: November 23,2024

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

Please follow the instructions below to install perl-Carp-Assert-More on openSUSE Leap

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

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

Please follow the guidance below to uninstall perl-Carp-Assert-More on openSUSE Leap:

$ sudo zypper remove perl-Carp-Assert-More

3. Information about the perl-Carp-Assert-More package on openSUSE Leap

Information for package perl-Carp-Assert-More:
----------------------------------------------
Repository : Main Repository
Name : perl-Carp-Assert-More
Version : 2.1.0-bp155.1.5
Arch : noarch
Vendor : openSUSE
Installed Size : 47.1 KiB
Installed : No
Status : not installed
Source package : perl-Carp-Assert-More-2.1.0-bp155.1.5.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.