test-shell
Installation
SKILL.md
Shell Testing with BATS
BATS (Bash Automated Testing System) for testing shell scripts and libraries.
Run Commands
# Run all tests recursively
bats --recursive tests/bats/
# Run specific test file
bats tests/bats/unit/lib/test_log.bats
# Run with TAP output (for CI)
bats --tap tests/bats/
# Run with timing info
bats --timing tests/bats/