close issue #108 (#109)

* added test for issue-108

* Closes #108

* fixed some easy shellcheck complaints

* trying to fix travis/debian-sid/shellcheck problem
This commit is contained in:
Manuel Streuhofer
2018-09-03 12:00:55 +02:00
committed by Kevin van Zonneveld
parent 2048e4303e
commit ba0e7150cb
5 changed files with 31 additions and 7 deletions

View File

@ -56,3 +56,9 @@ echo "# complain about nothing"
source "${__root}/main.sh" -3 arg3 -4 arg4 -5 arg5 -8 arg8 -d argd
for argument in ${!arg_*}; do info "${argument}: ${!argument}"; done
)
echo "# test for issue #108"
(
source "${__root}/main.sh" -3 arg3 -5 arg5 -8 arg8 -d argd --four value --zero
for argument in ${!arg_*}; do info "${argument}: ${!argument}"; done
)