How to Install and Uninstall bats Package on openSuSE Tumbleweed

Last updated: May 13,2024

1. Install "bats" package

This guide covers the steps necessary to install bats on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install bats

2. Uninstall "bats" package

This guide let you learn how to uninstall bats on openSuSE Tumbleweed:

$ sudo zypper remove bats

3. Information about the bats package on openSuSE Tumbleweed

Information for package bats:
-----------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : bats
Version : 1.10.0-1.2
Arch : noarch
Vendor : openSUSE
Installed Size : 137.8 KiB
Installed : No
Status : not installed
Source package : bats-1.10.0-1.2.src
Upstream URL : https://github.com/bats-core/bats-core/
Summary : Bash Automated Testing System
Description :
Bats is a TAP-compliant (http://testanything.org/) testing framework for Bash.
It provides a simple and repeatable way to verify that the UNIX programs you
write behave as expected.
A Bats test file is a Bash script with special syntax for defining test cases.
Under the hood, each test case is just a function with a description.
Bats is most useful when testing software written in Bash, but you can use it
to test any UNIX program.