mirror of
https://github.com/nginx-proxy/nginx-proxy
synced 2025-04-21 08:48:03 +02:00
7 lines
198 B
Python
7 lines
198 B
Python
import pytest
|
|
|
|
|
|
def test_templatefile_was_rendered_by_nginx_entrypoint(docker_compose, nginxproxy):
|
|
conf = nginxproxy.get_conf().decode('ASCII')
|
|
assert "# some_directive FOOBARBAZ;" in conf
|