bash-testing
Installation
SKILL.md
Bash Testing (BATS)
Test shell scripts reliably with the Bash Automated Testing System.
Run tests
# Run a test file
bats test/my_script.bats
# Run all tests in directory
bats test/
# Verbose output
bats --verbose-run test/
# TAP format output (for CI)
bats --formatter tap test/