How to Install and Uninstall perl-Test-XML.noarch Package on CentOS Stream 8

Last updated: May 20,2024

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

Please follow the step by step instructions below to install perl-Test-XML.noarch on CentOS Stream 8

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

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

Please follow the guidelines below to uninstall perl-Test-XML.noarch on CentOS Stream 8:

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

3. Information about the perl-Test-XML.noarch package on CentOS Stream 8

Last metadata expiration check: 5:50:56 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : perl-Test-XML
Version : 0.08
Release : 16.el8
Architecture : noarch
Size : 27 k
Source : perl-Test-XML-0.08-16.el8.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().