diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-09-12 10:40:17 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-09-12 10:40:17 +0200 |
| commit | d66394dc10517af4578e80d626dc903a3cdece79 (patch) | |
| tree | a37946809fbf728f1aa08c6e02d38b35290b568b /src/suites | |
| parent | 387fe3441d2f1f02b8ff85e798eb1295f95b7e7f (diff) | |
| download | minishell_test-d66394dc10517af4578e80d626dc903a3cdece79.tar.gz minishell_test-d66394dc10517af4578e80d626dc903a3cdece79.tar.bz2 minishell_test-d66394dc10517af4578e80d626dc903a3cdece79.zip | |
Fixing autocompletion with 0 match, Fixing export singleton with --posix
Diffstat (limited to 'src/suites')
| -rw-r--r-- | src/suites/builtin.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/suites/builtin.py b/src/suites/builtin.py index ff094e0..0c468d2 100644 --- a/src/suites/builtin.py +++ b/src/suites/builtin.py @@ -6,7 +6,7 @@ # By: juligonz <juligonz@student.42.fr> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:43 by charles #+# #+# # -# Updated: 2020/09/12 01:40:08 by charles ### ########.fr # +# Updated: 2020/09/12 10:37:05 by charles ### ########.fr # # Updated: 2020/09/11 18:01:27 by juligonz ### ########.fr # # # # **************************************************************************** # @@ -43,12 +43,12 @@ def suite_echo(test): @suite() def suite_export(test): - test("export")#, hook=hooks.export_singleton) - test("export", exports={"A": ""})#, hook=hooks.export_singleton) - test("export", exports={"A": "\""})#, hook=hooks.export_singleton) - test("export", exports={"A": "\t"})#, hook=hooks.export_singleton) - test("export", exports={"A": "'"})#, hook=hooks.export_singleton) - test("export", exports={"A": "a"})#, hook=hooks.export_singleton) + test("export", hook=hooks.export_singleton) + test("export", exports={"A": ""}, hook=hooks.export_singleton) + test("export", exports={"A": "\""}, hook=hooks.export_singleton) + test("export", exports={"A": "\t"}, hook=hooks.export_singleton) + test("export", exports={"A": "'"}, hook=hooks.export_singleton) + test("export", exports={"A": "a"}, hook=hooks.export_singleton) test("export A=a; echo $A") test("export A=a B=b C=c; echo $A$B$C") test("export A=a B=b C=c D=d E=e F=f G=g H=h I=i J=j K=k L=l" |
