(fix/enhancement): Added two tests for behaviour when not file corresponds

This commit is contained in:
Jérôme Guélen 2025-04-28 11:38:46 +02:00
parent 25ffc3fb6f
commit 32dd807c9d
No known key found for this signature in database

16
test.sh
View file

@ -1360,4 +1360,20 @@ expecting <<EOF
outfile
EOF
when_run <<"EOF" "normal behaviour with wildcard before echo where no file corresponds"
export target=out*
echo $target
EOF
expecting <<EOF
out*
EOF
when_run <<"EOF" "normal behaviour with wildcard after variable expansion where no file corresponds"
export target="out*"
echo $target
EOF
expecting <<EOF
out*
EOF
finalize