This repository has been archived on 2025-12-04. You can view files and clone it, but cannot push or open issues or pull requests.
Files
wilcon-agent/tests/test_proginfo.py
2025-06-29 08:33:19 +02:00

10 lines
355 B
Python

from proginfo import get_process_info
def test_process_info_returns_list():
data = get_process_info()
assert isinstance(data, list)
if data: # Teste nur, wenn Prozesse vorhanden sind
proc = data[0]
for key in ["pid", "name", "user", "cpu", "memory", "status", "start_time", "runtime_seconds"]:
assert key in proc