kiwi-scp/tests/test_instance.py
2021-10-26 16:19:33 +02:00

33 lines
760 B
Python

from pathlib import Path
from kiwi_scp.instance import Instance
class TestDefault:
def test_example(self):
i = Instance(Path("example"))
assert i.config is not None
assert len(i.config.projects) == 1
p = i.config.projects[0]
assert p.name == "hello-world.project"
s = list(i.get_services(p.name))
assert len(s) == 5
def test_empty(self):
i = Instance()
assert i.config is not None
assert len(i.config.projects) == 0
def test_no_such_dir(self):
nonexistent_path = Path("nonexistent")
i = Instance(nonexistent_path)
assert i.directory == nonexistent_path
assert i.config is not None
assert len(i.config.projects) == 0