mirror of
https://github.com/thib8956/nginx-proxy
synced 2025-02-24 09:48:14 +00:00
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)
|