diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-06-17 14:04:56 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-06-17 14:04:56 +0200 |
| commit | a5a7a2ae5132b2cc682fe8c2496680bf748bf9b3 (patch) | |
| tree | f8f546fb3b73886af07a631d20e45e7d767e6095 /suites/__init__.py | |
| parent | f36a8ccb91cb71c1e4f15dc12cdecf3167eb1420 (diff) | |
| download | minishell_test-a5a7a2ae5132b2cc682fe8c2496680bf748bf9b3.tar.gz minishell_test-a5a7a2ae5132b2cc682fe8c2496680bf748bf9b3.tar.bz2 minishell_test-a5a7a2ae5132b2cc682fe8c2496680bf748bf9b3.zip | |
Added builtin test (false positive until separator are implemented
Diffstat (limited to 'suites/__init__.py')
| -rw-r--r-- | suites/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/suites/__init__.py b/suites/__init__.py new file mode 100644 index 0000000..736c3c5 --- /dev/null +++ b/suites/__init__.py @@ -0,0 +1,7 @@ +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")] + +print(__all__) |
