compose-viz/tests/test_extends.py

7 lines
233 B
Python
Raw Normal View History

2022-05-18 09:12:24 +02:00
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')