From 387fe3441d2f1f02b8ff85e798eb1295f95b7e7f Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sat, 12 Sep 2020 02:22:56 +0200 Subject: Added suite name autocompletion --- src/suites/cmd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/suites/cmd.py') diff --git a/src/suites/cmd.py b/src/suites/cmd.py index f258dd4..2493a0e 100644 --- a/src/suites/cmd.py +++ b/src/suites/cmd.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 15:11:46 by charles #+# #+# # -# Updated: 2020/09/11 20:12:16 by charles ### ########.fr # +# Updated: 2020/09/12 01:31:00 by charles ### ########.fr # # # # ############################################################################ # @@ -179,7 +179,7 @@ def suite_cmd_path(test): test("_", setup="touch _") test("'-'", setup="touch -") test("./_", setup="touch _") - test("./-", setup="touch -") + test("./-", setup="touch a; mv a -- -") test("./.", setup="touch .") test("./..", setup="touch ..") test("./somefile", setup='touch somefile && chmod 0777 somefile') -- cgit