From 0991aa7a4dfba90e895767e77676e7d29f9d1446 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Tue, 2 Mar 2021 19:16:47 +0100 Subject: Refactoring test.Test --- tests/test/test_test.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tests/test/test_test.py (limited to 'tests/test') 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 +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# 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 -- cgit