How To Install libtest-filename-perl on Ubuntu 18.04

In this tutorial we learn how to install libtest-filename-perl on Ubuntu 18.04. libtest-filename-perl is portable filename comparison

Introduction

In this tutorial we learn how to install libtest-filename-perl on Ubuntu 18.04.

What is libtest-filename-perl

libtest-filename-perl is:

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.

There are three methods to install libtest-filename-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libtest-filename-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libtest-filename-perl using apt-get by running the following command:

sudo apt-get -y install libtest-filename-perl

Install libtest-filename-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libtest-filename-perl using apt by running the following command:

sudo apt -y install libtest-filename-perl

Install libtest-filename-perl Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libtest-filename-perl using aptitude by running the following command:

sudo aptitude -y install libtest-filename-perl

How To Uninstall libtest-filename-perl on Ubuntu 18.04

To uninstall only the libtest-filename-perl package we can use the following command:

sudo apt-get remove libtest-filename-perl

Uninstall libtest-filename-perl And Its Dependencies

To uninstall libtest-filename-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libtest-filename-perl

Remove libtest-filename-perl Configurations and Data

To remove libtest-filename-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libtest-filename-perl

Remove libtest-filename-perl configuration, data, and all of its dependencies

We can use the following command to remove libtest-filename-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libtest-filename-perl

References

Summary

In this tutorial we learn how to install libtest-filename-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.