blob: 5e2176be4695463600f1823aa4f12d9e8e5c260d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
|