Bats

From wikinotes
Revision as of 19:59, 23 September 2023 by Will (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A test framework for bash.

Documentation

github https://github.com/bats-core/bats-core
official docs https://github.com/bats-core/bats-core/tree/master/docs/source

Install

sudo pacman -S \
  bash-bats \
  bash-bats-assert \
  bash-bats-support

Usage

bats foo_test.bats

Syntax

#!/usr/bin/env bats

@test "addition using bc" {
  result="$(echo 2+2 | bc)"
  [ "$result" -eq 4 ]
}