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

Last updated: November 23,2024

1. Install "perl-Test-Identity" package

Here is a brief guide to show you how to install perl-Test-Identity on openSuSE Tumbleweed

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

2. Uninstall "perl-Test-Identity" package

Please follow the steps below to uninstall perl-Test-Identity on openSuSE Tumbleweed:

$ sudo zypper remove perl-Test-Identity

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

Information for package perl-Test-Identity:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Test-Identity
Version : 0.01-1.30
Arch : noarch
Vendor : openSUSE
Installed Size : 23.9 KiB
Installed : No
Status : not installed
Source package : perl-Test-Identity-0.01-1.30.src
Upstream URL : http://search.cpan.org/dist/Test-Identity/
Summary : Assert the Referential Identity of a Reference
Description :
This module provides a single testing function, 'identical'. It asserts
that a given reference is as expected; that is, it either refers to the
same object or is 'undef'. It is similar to 'Test::More::is' except that it
uses 'refaddr', ensuring that it behaves correctly even if the references
under test are objects that overload stringification or numification.
It also provides better diagnostics if the test fails:
$ perl -MTest::More=tests,1 -MTest::Identity -e'identical [], {}'
1..1
not ok 1
$ perl -MTest::More=tests,1 -MTest::Identity -e'identical [], []'
1..1
not ok 1