mirror of
https://github.com/thib8956/nginx-proxy
synced 2025-02-24 01:38:15 +00:00
8 lines
234 B
Python
8 lines
234 B
Python
import pytest
|
|
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)
|