How to Install and Uninstall perl-Test-XML.noarch Package on Fedora 39

Last updated: February 08,2025

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

In this section, we are going to explain the necessary steps to install perl-Test-XML.noarch on Fedora 39

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

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

Please follow the step by step instructions below to uninstall perl-Test-XML.noarch on Fedora 39:

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

3. Information about the perl-Test-XML.noarch package on Fedora 39

Last metadata expiration check: 0:09:08 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : perl-Test-XML
Version : 0.08
Release : 27.fc39
Architecture : noarch
Size : 24 k
Source : perl-Test-XML-0.08-27.fc39.src.rpm
Repository : fedora
Summary : Compare XML in perl tests
URL : https://metacpan.org/release/Test-XML
License : GPL-1.0-or-later OR Artistic-1.0-Perl
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().