Add globbing test

This commit is contained in:
savalet
2025-05-04 20:56:11 +02:00
parent 0f21c8c572
commit 180b3fc1d5

View File

@@ -252,4 +252,20 @@ TESTS = [
],
depends_on=("ARGS",)
),
Test(
key="GLOB",
name="globbing",
cmds=[
"ls *\n",
"echo *.nix\n",
"echo *file*\n",
"echo fixtures/*.sh\n",
"echo doesnotexist*\n",
"ls *.c *.h\n",
"echo *.txt > out.txt\n",
"cat < out.txt\n",
],
depends_on=("REDIR",)
),
]