mirror of
https://github.com/thib8956/nginx-proxy
synced 2025-02-24 17:58:16 +00:00
11 lines
446 B
Python
11 lines
446 B
Python
|
def test_forwards_to_bridge_network_container(docker_compose, nginxproxy):
|
||
|
r = nginxproxy.get("http://bridge-network.nginx-proxy.tld/port")
|
||
|
assert r.status_code == 200
|
||
|
assert r.text == "answer from port 80\n"
|
||
|
|
||
|
|
||
|
def test_forwards_to_host_network_container(docker_compose, nginxproxy):
|
||
|
r = nginxproxy.get("http://host-network.nginx-proxy.tld/port")
|
||
|
assert r.status_code == 200
|
||
|
assert r.text == "answer from port 8080\n"
|