17 lines
472 B
Python
17 lines
472 B
Python
from config.paths import Paths
|
|
from core.service_creator import ServiceCreator
|
|
from models.context import ServicesContext
|
|
|
|
|
|
def test_add_new_service():
|
|
paths = Paths()
|
|
ctx = ServicesContext.load_from_disk(paths)
|
|
creator = ServiceCreator(ctx=ctx)
|
|
# creator.add_service(
|
|
# name="test-service",
|
|
# user="test-user",
|
|
# ioc_description="test ioc description",
|
|
# ui_name="Test UI Name",
|
|
# ui_filename="TestUiName",
|
|
# )
|