aboutsummaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-06-17 14:04:56 +0200
committerCharles <sircharlesaze@gmail.com>2020-06-17 14:04:56 +0200
commita5a7a2ae5132b2cc682fe8c2496680bf748bf9b3 (patch)
treef8f546fb3b73886af07a631d20e45e7d767e6095 /config.py
parentf36a8ccb91cb71c1e4f15dc12cdecf3167eb1420 (diff)
downloadminishell_test-a5a7a2ae5132b2cc682fe8c2496680bf748bf9b3.tar.gz
minishell_test-a5a7a2ae5132b2cc682fe8c2496680bf748bf9b3.tar.bz2
minishell_test-a5a7a2ae5132b2cc682fe8c2496680bf748bf9b3.zip
Added builtin test (false positive until separator are implemented
Diffstat (limited to 'config.py')
-rw-r--r--config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.py b/config.py
index 7a0f083..86cc9a4 100644
--- a/config.py
+++ b/config.py
@@ -21,7 +21,7 @@ SANDBOX_PATH = "sandbox"
EXECUTABLES_PATH = "./bin"
# commands available in test"
-AVAILABLE_COMMANDS = ["cat", "touch"]
+AVAILABLE_COMMANDS = ["cat", "touch", "env"]
# $PATH environment variable passed to the shell
PATH_VARIABLE = os.path.abspath(EXECUTABLES_PATH)