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_netinf.py
2025-06-29 08:33:19 +02:00

9 lines
286 B
Python

from netinf import get_network_info
def test_network_info_contains_expected_keys():
data = get_network_info(debug=False)
assert isinstance(data, dict)
for key in ["hostname", "ip_address", "interfaces", "gateway", "dns_servers", "connections"]:
assert key in data