From 904a033ae738e1c351f8fef71e2ec2418fc4db3d Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 5 Feb 2021 12:27:32 +0100 Subject: Renaming src -> minishell_test for package name, Renaming main.py -> __main__.py for package execution with python -m --- minishell_test/test/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 minishell_test/test/__init__.py (limited to 'minishell_test/test/__init__.py') diff --git a/minishell_test/test/__init__.py b/minishell_test/test/__init__.py new file mode 100644 index 0000000..cf9949f --- /dev/null +++ b/minishell_test/test/__init__.py @@ -0,0 +1,13 @@ +# ############################################################################ # +# # +# ::: :::::::: # +# __init__.py :+: :+: :+: # +# +:+ +:+ +:+ # +# By: charles +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2020/09/11 12:18:14 by charles #+# #+# # +# Updated: 2020/09/11 20:18:10 by charles ### ########.fr # +# # +# ############################################################################ # + +from test.test import Test # noqa: F401 -- cgit