1
0
Fork 0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2024-06-02 04:46:19 +02:00
nginx-proxy/test/test_multiple-ports/test_single-port-not-80.py
Thomas LEVEIL 6069bc53cd TESTS: replace old test suite with the new one
get rid of Bats definitively
2017-02-17 00:29:30 +01:00

8 lines
239 B
Python

import pytest
def test_answer_is_served_from_exposed_port_even_if_not_80(docker_compose, nginxproxy):
r = nginxproxy.get("http://web.nginx-proxy.tld/port")
assert r.status_code == 200
assert "answer from port 81\n" in r.text