How to Install and Uninstall perl-Test-Compile Package on openSuSE Tumbleweed

Last updated: May 19,2024

1. Install "perl-Test-Compile" package

Learn how to install perl-Test-Compile on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Test-Compile

2. Uninstall "perl-Test-Compile" package

This guide covers the steps necessary to uninstall perl-Test-Compile on openSuSE Tumbleweed:

$ sudo zypper remove perl-Test-Compile

3. Information about the perl-Test-Compile package on openSuSE Tumbleweed

Information for package perl-Test-Compile:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Test-Compile
Version : 3.3.1-2.1
Arch : noarch
Vendor : openSUSE
Installed Size : 36.4 KiB
Installed : No
Status : not installed
Source package : perl-Test-Compile-3.3.1-2.1.src
Upstream URL : https://metacpan.org/release/Test-Compile
Summary : Assert that your Perl files compile OK
Description :
'Test::Compile' lets you check the whether your perl modules and scripts
compile properly, results are reported in standard 'Test::Simple' fashion.
The basic usage - as shown above, will locate your perl files and test that
they all compile.
Module authors can (and probably should) include the following in a
_t/00-compile.t_ file and have 'Test::Compile' automatically find and check
all Perl files in a module distribution:
use strict;
use warnings;
use Test::Compile qw();
my $test = Test::Compile->new();
$test->all_files_ok();
$test->done_testing();