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

Last updated: October 06,2024

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

This guide covers the steps necessary to install perl-Test-XML.noarch on Fedora 35

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

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

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

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

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

Last metadata expiration check: 5:25:52 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : perl-Test-XML
Version : 0.08
Release : 22.fc35
Architecture : noarch
Size : 26 k
Source : perl-Test-XML-0.08-22.fc35.src.rpm
Repository : fedora
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().