How to Install and Uninstall lua54-busted Package on openSuSE Tumbleweed

Last updated: May 15,2024

1. Install "lua54-busted" package

This tutorial shows how to install lua54-busted on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install lua54-busted

2. Uninstall "lua54-busted" package

Please follow the instructions below to uninstall lua54-busted on openSuSE Tumbleweed:

$ sudo zypper remove lua54-busted

3. Information about the lua54-busted package on openSuSE Tumbleweed

Information for package lua54-busted:
-------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : lua54-busted
Version : 2.0.0-6.2
Arch : noarch
Vendor : openSUSE
Installed Size : 132.0 KiB
Installed : No
Status : not installed
Source package : lua54-busted-2.0.0-6.2.src
Upstream URL : https://lunarmodules.github.io/busted/
Summary : Unit testing framework with a focus on being easy to use
Description :
busted is a unit testing framework with a focus on being easy to
use. busted works with lua >= 5.1, moonscript, terra, and LuaJIT
>= 2.0.0.
busted test specs read naturally without being too verbose. You
can even chain asserts and negations, such as assert.not.equals.
Nest blocks of tests with contextual descriptions using describe,
and add tags to blocks so you can run arbitrary groups of tests.
An extensible assert library allows you to extend and craft your
own assert functions specific to your case with method chaining.
A modular output library lets you add on your own output format,
along with the default pretty and plain terminal output, JSON
with and without streaming, and TAP-compatible output that allows
you to run busted specs within most CI servers. You can even
register phrases for internationaliation with custom or built-in
language packs.