How To Install lua-lemock-dev on Debian 9

In this tutorial we learn how to install lua-lemock-dev on Debian 9. lua-lemock-dev is LeMock (Lua Easy Mock) for unit test

Introduction

In this tutorial we learn how to install lua-lemock-dev on Debian 9.

What is lua-lemock-dev

lua-lemock-dev is:

LeMock is a mock creation module intended for use together with a unit test framework such as lua-unit. It is inspired by EasyMock (for Java), and strives to be easy to use.

This package contains docs and test files.

There are three methods to install lua-lemock-dev on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install lua-lemock-dev Using apt-get

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

sudo apt-get update

After updating apt database, We can install lua-lemock-dev using apt-get by running the following command:

sudo apt-get -y install lua-lemock-dev

Install lua-lemock-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install lua-lemock-dev using apt by running the following command:

sudo apt -y install lua-lemock-dev

Install lua-lemock-dev 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install lua-lemock-dev using aptitude by running the following command:

sudo aptitude -y install lua-lemock-dev

How To Uninstall lua-lemock-dev on Debian 9

To uninstall only the lua-lemock-dev package we can use the following command:

sudo apt-get remove lua-lemock-dev

Uninstall lua-lemock-dev And Its Dependencies

To uninstall lua-lemock-dev and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove lua-lemock-dev

Remove lua-lemock-dev Configurations and Data

To remove lua-lemock-dev configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge lua-lemock-dev

Remove lua-lemock-dev configuration, data, and all of its dependencies

We can use the following command to remove lua-lemock-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge lua-lemock-dev

Dependencies

lua-lemock-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install lua-lemock-dev package on Debian 9 using different package management tools: apt, apt-get and aptitude.