From 7081b93b8ed4f98c628400e05d22d0523f41a842 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sat, 27 Feb 2021 12:24:37 +0100 Subject: Fixing #16 - Adding support for custom config file in user directory --- minishell_test/suites/builtin.py | 6 +++--- minishell_test/suites/cmd.py | 6 +++--- minishell_test/suites/flow.py | 4 ++-- minishell_test/suites/preprocess.py | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) (limited to 'minishell_test/suites') diff --git a/minishell_test/suites/builtin.py b/minishell_test/suites/builtin.py index 768850a..c373ce6 100644 --- a/minishell_test/suites/builtin.py +++ b/minishell_test/suites/builtin.py @@ -6,15 +6,15 @@ # By: juligonz +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:43 by charles #+# #+# # -# Updated: 2021/02/05 14:48:47 by charles ### ########.fr # +# Updated: 2021/02/27 12:07:46 by cacharle ### ########.fr # # Updated: 2020/09/11 18:01:27 by juligonz ### ########.fr # # # # **************************************************************************** # import os -import minishell_test.config as config -import minishell_test.hooks as hooks +from minishell_test import config +from minishell_test import hooks from minishell_test.suite.decorator import suite from minishell_test.hooks import linux_discard diff --git a/minishell_test/suites/cmd.py b/minishell_test/suites/cmd.py index da3b14a..8d2bc09 100644 --- a/minishell_test/suites/cmd.py +++ b/minishell_test/suites/cmd.py @@ -6,14 +6,14 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 15:11:46 by charles #+# #+# # -# Updated: 2021/02/05 16:15:42 by charles ### ########.fr # +# Updated: 2021/02/27 12:07:29 by cacharle ### ########.fr # # # # ############################################################################ # import distutils -import minishell_test.hooks as hooks -import minishell_test.config as config +from minishell_test import hooks +from minishell_test import config from minishell_test.suite.decorator import suite diff --git a/minishell_test/suites/flow.py b/minishell_test/suites/flow.py index ed5fd03..2adbb4b 100644 --- a/minishell_test/suites/flow.py +++ b/minishell_test/suites/flow.py @@ -6,11 +6,11 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:52 by charles #+# #+# # -# Updated: 2021/02/05 17:40:00 by charles ### ########.fr # +# Updated: 2021/02/27 12:06:58 by cacharle ### ########.fr # # # # ############################################################################ # -import minishell_test.config as config +from minishell_test import config from minishell_test.suite.decorator import suite from minishell_test.hooks import ( error_line0, diff --git a/minishell_test/suites/preprocess.py b/minishell_test/suites/preprocess.py index d7d6bbc..c296dcb 100644 --- a/minishell_test/suites/preprocess.py +++ b/minishell_test/suites/preprocess.py @@ -6,12 +6,12 @@ # By: juligonz +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:25:00 by charles #+# #+# # -# Updated: 2021/02/05 14:43:27 by charles ### ########.fr # +# Updated: 2021/02/27 12:07:11 by cacharle ### ########.fr # # # # **************************************************************************** # -import minishell_test.config as config -import minishell_test.hooks as hooks +from minishell_test import config +from minishell_test import hooks from minishell_test.suite.decorator import suite -- cgit