mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-29 17:17:44 +02:00
- refresh GitHub Actions versions - manually install shUnit2 v2.1.8 - more portable usage check - run-all.sh exits on ctrl-c
14 lines
280 B
Bash
Executable File
14 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
test_help() {
|
|
runAndCapture --help
|
|
assertTrue "getting help should succeed" $result
|
|
assertNotNull "stdout should not be empty" "$stdout"
|
|
assertNull "stderr should be empty" "$stderr"
|
|
python3 check_usage.py
|
|
}
|
|
|
|
source ../lib/functions.sh
|
|
|
|
. shunit2
|