aboutsummaryrefslogtreecommitdiff
path: root/src/suites/operation.py
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-11 16:37:35 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-11 16:37:35 +0200
commit2c9716311a28d126b97770ecf094291005f60a52 (patch)
treeb5e87600eddea8dbb09179c95a4ee13ef57fb79e /src/suites/operation.py
parentdcb4a6453ca1ca6789c3121a739f373abeaba14c (diff)
downloadminishell_test-2c9716311a28d126b97770ecf094291005f60a52.tar.gz
minishell_test-2c9716311a28d126b97770ecf094291005f60a52.tar.bz2
minishell_test-2c9716311a28d126b97770ecf094291005f60a52.zip
Removed test for variable without export
Diffstat (limited to 'src/suites/operation.py')
-rw-r--r--src/suites/operation.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/suites/operation.py b/src/suites/operation.py
index d58953b..a39ddda 100644
--- a/src/suites/operation.py
+++ b/src/suites/operation.py
@@ -6,7 +6,7 @@
# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/15 18:24:52 by charles #+# #+# #
-# Updated: 2020/09/11 14:19:14 by charles ### ########.fr #
+# Updated: 2020/09/11 16:35:25 by charles ### ########.fr #
# #
# ############################################################################ #
@@ -55,8 +55,8 @@ def suite_pipe(test):
test("echo a | export A=a; echo $A")
test("export A=a | cat; echo $A")
- test("echo a | A=a; echo $A")
- test("A=a | cat; echo $A")
+ # test("echo a | A=a; echo $A")
+ # test("A=a | cat; echo $A")
@suite(bonus=True)
def suite_and(test):