From 180b3fc1d5a4b53e7d1df329de8eda717663a768 Mon Sep 17 00:00:00 2001 From: savalet Date: Sun, 4 May 2025 20:56:11 +0200 Subject: [PATCH] Add globbing test --- validation_tests.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/validation_tests.py b/validation_tests.py index 050ee07..47136bf 100644 --- a/validation_tests.py +++ b/validation_tests.py @@ -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",) + ), ]