mirror of
https://github.com/nginx-proxy/nginx-proxy
synced 2025-02-05 05:41:39 +01:00
b5dea1cf50
- remove unused imports in test cases - fix code smells and code style in conftest.py
7 lines
220 B
Python
7 lines
220 B
Python
import re
|
|
|
|
|
|
def test_predictable_upstream_is_present_in_nginx_generated_conf(docker_compose, nginxproxy):
|
|
conf = nginxproxy.get_conf().decode('ASCII')
|
|
assert re.search(r"upstream web\.nginx-proxy\.tld \{", conf)
|