aboutsummaryrefslogtreecommitdiff
path: root/src/suites/parenthesis.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/suites/parenthesis.py')
-rw-r--r--src/suites/parenthesis.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/suites/parenthesis.py b/src/suites/parenthesis.py
index 98320e8..d3ec5bf 100644
--- a/src/suites/parenthesis.py
+++ b/src/suites/parenthesis.py
@@ -6,7 +6,7 @@
# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/15 18:24:57 by charles #+# #+# #
-# Updated: 2020/09/11 14:23:35 by charles ### ########.fr #
+# Updated: 2020/09/11 16:13:54 by charles ### ########.fr #
# #
# ############################################################################ #
@@ -55,3 +55,8 @@ def suite_parenthesis(test):
test("(exit); echo bonjour")
test("(echo bonjour; exit; echo aurevoir)")
+
+ test("(ls && ls)")
+ test("(ls doesntexist || ls)")
+ test("(ls doesntexist && ls)")
+ test("(ls && ls) && echo $?")