aboutsummaryrefslogtreecommitdiff
path: root/tests/test/test_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test/test_test.py')
-rw-r--r--tests/test/test_test.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/test/test_test.py b/tests/test/test_test.py
new file mode 100644
index 0000000..5e2176b
--- /dev/null
+++ b/tests/test/test_test.py
@@ -0,0 +1,30 @@
+# ############################################################################ #
+# #
+# ::: :::::::: #
+# test_test.py :+: :+: :+: #
+# +:+ +:+ +:+ #
+# By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ #
+# +#+#+#+#+#+ +#+ #
+# Created: 2021/03/02 18:48:57 by cacharle #+# #+# #
+# Updated: 2021/03/02 18:50:07 by cacharle ### ########.fr #
+# #
+# ############################################################################ #
+
+
+import pytest
+
+from minishell_test.config import Config
+from minishell_test import colors
+
+from minishell_test.test.result import BaseResult, Result, LeakResult, LeakResultException
+from minishell_test.test.captured import CapturedCommand, CapturedTimeout
+
+from tests.helpers import config_context
+
+
+colors.disable()
+Config.init([])
+
+class TestTest:
+ def test_run(self):
+ pass