11 lines
243 B
Python
11 lines
243 B
Python
from __future__ import annotations
|
|
|
|
from cloud_api.app import create_app
|
|
|
|
|
|
def test_create_app_returns_independent_cloud_application() -> None:
|
|
app = create_app()
|
|
|
|
assert app.title == "Device Cloud API"
|
|
assert callable(create_app)
|