1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2026-03-01 22:10:27 +00:00
Files
supervisor/tests/host/test_supported_features.py
2020-08-26 14:11:21 +02:00

12 lines
301 B
Python

"""Test supported features."""
# pylint: disable=protected-access
def test_supported_features(coresys):
"""Test host features."""
assert "network" in coresys.host.supported_features
coresys._dbus.network.is_connected = False
assert "network" not in coresys.host.supported_features