11 lines
200 B
Plaintext
11 lines
200 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
cd "${0%/*}" || exit 1
|
||
|
. ../run-tests
|
||
|
|
||
|
export arguments=(--fail-on-file -- --help)
|
||
|
export returnCode=1
|
||
|
export template=""
|
||
|
export expected=$'ERROR: No such file: --help\n'
|
||
|
|
||
|
runTest
|