How to Install and Uninstall perl-Test-Compile Package on openSUSE Leap

Last updated: May 06,2024

1. Install "perl-Test-Compile" package

This tutorial shows how to install perl-Test-Compile on openSUSE Leap

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

2. Uninstall "perl-Test-Compile" package

Learn how to uninstall perl-Test-Compile on openSUSE Leap:

$ sudo zypper remove perl-Test-Compile

3. Information about the perl-Test-Compile package on openSUSE Leap

Information for package perl-Test-Compile:
------------------------------------------
Repository : Main Repository
Name : perl-Test-Compile
Version : 3.1.0-bp155.1.5
Arch : noarch
Vendor : openSUSE
Installed Size : 37.7 KiB
Installed : No
Status : not installed
Source package : perl-Test-Compile-3.1.0-bp155.1.5.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();