How to Install and Uninstall libtest-filename-perl Package on Ubuntu 16.04 LTS (Xenial Xerus)

Last updated: May 12,2024

1. Install "libtest-filename-perl" package

Please follow the guidance below to install libtest-filename-perl on Ubuntu 16.04 LTS (Xenial Xerus)

$ sudo apt update $ sudo apt install libtest-filename-perl

2. Uninstall "libtest-filename-perl" package

This is a short guide on how to uninstall libtest-filename-perl on Ubuntu 16.04 LTS (Xenial Xerus):

$ sudo apt remove libtest-filename-perl $ sudo apt autoclean && sudo apt autoremove

3. Information about the libtest-filename-perl package on Ubuntu 16.04 LTS (Xenial Xerus)

Package: libtest-filename-perl
Priority: optional
Section: universe/perl
Installed-Size: 59
Maintainer: Ubuntu Developers
Original-Maintainer: Debian Perl Group
Architecture: all
Version: 0.03-1
Depends: libpath-tiny-perl, perl
Filename: pool/universe/libt/libtest-filename-perl/libtest-filename-perl_0.03-1_all.deb
Size: 8020
MD5sum: 57a1e5d87093a30b9599d9db20d7c46c
SHA1: abd58c005a6a5dce71f211e7c921c13d3fa1ed78
SHA256: 9b5f37e03479ec9a80b06fa3832c1429c96b1922b8a85ab4149a89b6d25828f5
Description-en: portable filename comparison
Many cross-platform test failures -- particularly on Win32 -- are due
to hard-coded file paths being used in comparison tests.
.
my $file = get_file(); # returns "foo\bar.t";
is( $file, "foo/bar.t" ); # fails on Win32
.
Test::Filename provides some handy functions to convert all those path
separators automatically so filename tests will just DWIM.
.
The alternative is to write your own utility subroutine and use it
everywhere or just keep on littering your test code with calls to
File::Spec -- yuck!
.
is( $file, File::Spec->canonpath("some/path"), "should pass" );
.
Since this module is so simple, you might not think it worth including
as a dependency. After all, it's not that hard to always remember to
use File::Spec, Path::Tiny or some other file utility, right? But odds
are that, at some point, you'll be so busy writing tests that you'll
forget and hard-code a path in your haste to show what a clever
programmer you are.
.
So just use this module and stop worrying about it. You'll be happier
and so will anyone trying to install your modules on Win32.
Description-md5: e53be58cf405e40f06179ed0028ae790
Homepage: https://metacpan.org/release/Test-Filename
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu