compose-viz/tests/test_extends.py
2022-05-18 15:12:24 +08:00

6 lines
233 B
Python

import pytest
from compose_viz.service import Service
def test_parse_file():
with pytest.raises(ValueError, match=r"Both image and extends are not defined in service 'frontend', aborting."):
Service(name='frontend')