mirror of
https://github.com/thib8956/nginx-proxy
synced 2025-02-24 09:48:14 +00:00
7 lines
159 B
Python
7 lines
159 B
Python
|
import pytest
|
||
|
|
||
|
def test_default_root_response(docker_compose, nginxproxy):
|
||
|
r = nginxproxy.get("http://nginx-proxy.test/")
|
||
|
assert r.status_code == 418
|
||
|
|