From d66394dc10517af4578e80d626dc903a3cdece79 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sat, 12 Sep 2020 10:40:17 +0200 Subject: Fixing autocompletion with 0 match, Fixing export singleton with --posix --- src/suites/builtin.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/suites/builtin.py') 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 +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # 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" -- cgit