2021-03-10 12:26:43 -05:00
|
|
|
#!/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"
|
2024-04-15 00:26:57 -04:00
|
|
|
python3 check_usage.py
|
2021-03-10 12:26:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
source ../lib/functions.sh
|
|
|
|
|
|
|
|
|
|
. shunit2
|