From 986c40d3a00d7eb938164e86e46d8dd2ce3b4d5b Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 26 Nov 2020 16:08:58 +0100 Subject: Added export singleton with \ and $ characters --- src/suites/builtin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/suites/builtin.py b/src/suites/builtin.py index 595833e..22ed176 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/10/29 14:16:47 by cacharle ### ########.fr # +# Updated: 2020/11/26 16:08:25 by charles ### ########.fr # # Updated: 2020/09/11 18:01:27 by juligonz ### ########.fr # # # # **************************************************************************** # @@ -69,6 +69,8 @@ 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": "\\"}, 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) -- cgit