How to Install and Uninstall perl-Test-XML.noarch Package on Rocky Linux 9

Last updated: May 21,2024

1. Install "perl-Test-XML.noarch" package

Please follow the guidance below to install perl-Test-XML.noarch on Rocky Linux 9

$ sudo dnf update $ sudo dnf install perl-Test-XML.noarch

2. Uninstall "perl-Test-XML.noarch" package

Here is a brief guide to show you how to uninstall perl-Test-XML.noarch on Rocky Linux 9:

$ sudo dnf remove perl-Test-XML.noarch $ sudo dnf autoremove

3. Information about the perl-Test-XML.noarch package on Rocky Linux 9

Last metadata expiration check: 0:34:52 ago on Fri Feb 16 06:49:52 2024.
Available Packages
Name : perl-Test-XML
Version : 0.08
Release : 16.el9
Architecture : noarch
Size : 26 k
Source : perl-Test-XML-0.08-16.el9.src.rpm
Repository : epel
Summary : Compare XML in perl tests
URL : https://metacpan.org/release/Test-XML
License : GPL+ or Artistic
Description : This module contains generic XML testing tools. Functions include:
:
: is_xml(GOT, EXPECTED [, TESTNAME ])
:
: This function compares GOT and EXPECTED, both of which are strings of XML.
: The comparison works semantically and will ignore differences in syntax
: that are meaningless in xml, such as different quote characters for
: attributes, order of attributes or empty tag styles. It returns true or
: false, depending upon test success.
:
: isnt_xml(GOT, MUST_NOT_BE [, TESTNAME ])
:
: This function is similar to is_xml(), except that it will fail if GOT and
: MUST_NOT_BE are identical.
:
: is_well_formed_xml(XML [, TESTNAME ])
:
: This function determines whether or not a given XML string is parsable as
: XML.
:
: is_good_xml(XML [, TESTNAME ])
:
: This is an alias for is_well_formed_xml().