From 18fcc07c7796889fe1cc4bc86564459ccd387ae7 Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Thu, 25 May 2023 16:56:14 +0100 Subject: 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. --- test/test_upstreams_rr.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/test_upstreams_rr.py') diff --git a/test/test_upstreams_rr.py b/test/test_upstreams_rr.py index 324c93cb..2bb23be0 100644 --- a/test/test_upstreams_rr.py +++ b/test/test_upstreams_rr.py @@ -1,6 +1,7 @@ import os import re +import pytest from unit.applications.lang.python import TestApplicationPython from unit.option import option @@ -8,7 +9,8 @@ from unit.option import option class TestUpstreamsRR(TestApplicationPython): prerequisites = {'modules': {'python': 'any'}} - def setup_method(self): + @pytest.fixture(autouse=True) + def setup_method_fixture(self): assert 'success' in self.conf( { "listeners": { -- cgit