aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-03-02 19:16:47 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-03-02 19:16:47 +0100
commit0991aa7a4dfba90e895767e77676e7d29f9d1446 (patch)
tree37dc65044127bb755d70e6ed4a791d92534e85ca /tests
parent8fe33b3a8b61682e7a9abc7a97264d08eba7504b (diff)
downloadminishell_test-0991aa7a4dfba90e895767e77676e7d29f9d1446.tar.gz
minishell_test-0991aa7a4dfba90e895767e77676e7d29f9d1446.tar.bz2
minishell_test-0991aa7a4dfba90e895767e77676e7d29f9d1446.zip
Refactoring test.Test
Diffstat (limited to 'tests')
-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