How to Install and Uninstall perl-Pod-Coverage Package on openSuSE Tumbleweed

Last updated: May 14,2024

1. Install "perl-Pod-Coverage" package

Please follow the guidelines below to install perl-Pod-Coverage on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Pod-Coverage

2. Uninstall "perl-Pod-Coverage" package

Please follow the steps below to uninstall perl-Pod-Coverage on openSuSE Tumbleweed:

$ sudo zypper remove perl-Pod-Coverage

3. Information about the perl-Pod-Coverage package on openSuSE Tumbleweed

Information for package perl-Pod-Coverage:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Pod-Coverage
Version : 0.23-6.16
Arch : noarch
Vendor : openSUSE
Installed Size : 30.3 KiB
Installed : No
Status : not installed
Source package : perl-Pod-Coverage-0.23-6.16.src
Upstream URL : https://metacpan.org/release/Pod-Coverage
Summary : Checks if the documentation of a module is comprehensive
Description :
Developers hate writing documentation. They'd hate it even more if their
computer tattled on them, but maybe they'll be even more thankful in the
long run. Even if not, _perlmodstyle_ tells you to, so you must obey.
This module provides a mechanism for determining if the pod for a given
module is comprehensive.
It expects to find either a '=head(n>1)' or an '=item' block documenting a
subroutine.
Consider: # an imaginary Foo.pm package Foo;
=item foo
The foo sub
= cut
sub foo {}
sub bar {}
1;
__END__
In this example 'Foo::foo' is covered, but 'Foo::bar' is not, so the 'Foo'
package is only 50% (0.5) covered