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_forwarded_header.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'test/test_forwarded_header.py') diff --git a/test/test_forwarded_header.py b/test/test_forwarded_header.py index eb2f25f8..9c6e0395 100644 --- a/test/test_forwarded_header.py +++ b/test/test_forwarded_header.py @@ -1,9 +1,14 @@ +import pytest from unit.applications.lang.python import TestApplicationPython class TestForwardedHeader(TestApplicationPython): prerequisites = {'modules': {'python': 'any'}} + @pytest.fixture(autouse=True) + def setup_method_fixture(self): + self.load('forwarded_header') + def forwarded_header(self, forwarded): assert 'success' in self.conf( { @@ -40,9 +45,6 @@ class TestForwardedHeader(TestApplicationPython): def get_scheme(self, *args, **kwargs): return self.get_fwd(*args, **kwargs)['Url-Scheme'] - def setup_method(self): - self.load('forwarded_header') - def test_forwarded_header_single_ip(self): self.forwarded_header( { -- cgit