diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2023-05-25 16:56:14 +0100 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2023-05-25 16:56:14 +0100 |
commit | 18fcc07c7796889fe1cc4bc86564459ccd387ae7 (patch) | |
tree | b38ea8171bb88ccdee8317747389789944198fc4 /test/test_tls_sni.py | |
parent | 3e4fa1e2022970dee003bea0932ea0c10f8744ba (diff) | |
download | unit-18fcc07c7796889fe1cc4bc86564459ccd387ae7.tar.gz unit-18fcc07c7796889fe1cc4bc86564459ccd387ae7.tar.bz2 |
Tests: unified setup method usage.
To make fixtures accessible inside of setup methods in tests all these methods
are renamed to the "setup_method_fixture" and decorated by autouse flag.
Also all setup methods moved to the top of the files.
Diffstat (limited to 'test/test_tls_sni.py')
-rw-r--r-- | test/test_tls_sni.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_tls_sni.py b/test/test_tls_sni.py index e918bb20..18b85ed8 100644 --- a/test/test_tls_sni.py +++ b/test/test_tls_sni.py @@ -1,6 +1,7 @@ import ssl import subprocess +import pytest from unit.applications.tls import TestApplicationTLS from unit.option import option @@ -8,7 +9,8 @@ from unit.option import option class TestTLSSNI(TestApplicationTLS): prerequisites = {'modules': {'openssl': 'any'}} - def setup_method(self): + @pytest.fixture(autouse=True) + def setup_method_fixture(self): self._load_conf( { "listeners": {"*:7080": {"pass": "routes"}}, |