generated from Luis/nextjs-python-web-template
new openapi_client
This commit is contained in:
@@ -82,6 +82,13 @@ class TestEntitiesApi(unittest.TestCase):
|
||||
"""
|
||||
pass
|
||||
|
||||
def test_is_attached(self) -> None:
|
||||
"""Test case for is_attached
|
||||
|
||||
Is Attached # noqa: E501
|
||||
"""
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
||||
@@ -41,7 +41,8 @@ class TestEntity(unittest.TestCase):
|
||||
ip = '127.0.0.1',
|
||||
visible = True,
|
||||
other = {network=Carlos Home Network, roles=[service repository, service prosumer]},
|
||||
attached = True
|
||||
attached = True,
|
||||
stop_health_task = True
|
||||
)
|
||||
else:
|
||||
return Entity(
|
||||
@@ -51,6 +52,7 @@ class TestEntity(unittest.TestCase):
|
||||
visible = True,
|
||||
other = {network=Carlos Home Network, roles=[service repository, service prosumer]},
|
||||
attached = True,
|
||||
stop_health_task = True,
|
||||
)
|
||||
"""
|
||||
|
||||
|
||||
@@ -49,7 +49,8 @@ class TestService(unittest.TestCase):
|
||||
ip = '127.0.0.1',
|
||||
visible = True,
|
||||
other = {network=Carlos Home Network, roles=[service repository, service prosumer]},
|
||||
attached = True, )
|
||||
attached = True,
|
||||
stop_health_task = True, )
|
||||
)
|
||||
else:
|
||||
return Service(
|
||||
@@ -66,7 +67,8 @@ class TestService(unittest.TestCase):
|
||||
ip = '127.0.0.1',
|
||||
visible = True,
|
||||
other = {network=Carlos Home Network, roles=[service repository, service prosumer]},
|
||||
attached = True, ),
|
||||
attached = True,
|
||||
stop_health_task = True, ),
|
||||
)
|
||||
"""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user