compose-viz/tests/test_extends.py
2022-05-19 00:38:42 +08:00

26 lines
558 B
Python

import pytest
from compose_viz.extends import Extends
def test_extend_init_normal():
try:
Extends(service_name="frontend", from_file="tests/in/000001.yaml")
assert True
except Exception as e:
assert False, e
def test_extend_init_without_from_file():
try:
Extends(service_name="frontend")
assert True
except Exception as e:
assert False, e
def test_extend_init_without_service_name():
with pytest.raises(TypeError):
Extends(from_file="tests/in/000001.yaml") # type: ignore