11 lines
312 B
Python
11 lines
312 B
Python
from __future__ import annotations
|
|
|
|
from host_agent.app import HostAgentApplication, create_application
|
|
|
|
|
|
def test_create_application_returns_host_agent_process_shell() -> None:
|
|
application = create_application()
|
|
|
|
assert isinstance(application, HostAgentApplication)
|
|
assert application.run() is None
|