diff options
Diffstat (limited to 'minishell_test/suites/__init__.py')
| -rw-r--r-- | minishell_test/suites/__init__.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/minishell_test/suites/__init__.py b/minishell_test/suites/__init__.py new file mode 100644 index 0000000..b6b3b68 --- /dev/null +++ b/minishell_test/suites/__init__.py @@ -0,0 +1,17 @@ +# ############################################################################ # +# # +# ::: :::::::: # +# __init__.py :+: :+: :+: # +# +:+ +:+ +:+ # +# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2020/07/15 18:24:48 by charles #+# #+# # +# Updated: 2020/09/11 13:25:26 by charles ### ########.fr # +# # +# ############################################################################ # + +import os +import glob + +modules = glob.glob(os.path.join(os.path.dirname(__file__), "*.py")) +__all__ = [os.path.basename(f)[:-3] for f in modules if os.path.isfile(f) and not f.endswith("__init__.py")] |
