1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-21 20:33:00 +00:00
kiwi-scp/tests/test_services.py
2021-12-02 17:32:55 +01:00

16 lines
351 B
Python

from ruamel.yaml import CommentedMap
from kiwi_scp.services import Services
from kiwi_scp.service import Service
class TestServices:
def test_empty(self):
s = Service(
name="s",
content=CommentedMap(),
parent=None,
)
ss = Services([s])
assert str(ss) == "services:\n s: {}"