mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-05-08 03:48:38 +00:00
15 lines
378 B
Python
15 lines
378 B
Python
"""Test supported features."""
|
|
# pylint: disable=protected-access
|
|
|
|
|
|
def test_supported_features(coresys):
|
|
"""Test host features."""
|
|
assert "network" in coresys.host.features
|
|
|
|
coresys._dbus.network.is_connected = False
|
|
|
|
assert "network" in coresys.host.features
|
|
|
|
coresys.host.supported_features.cache_clear()
|
|
assert "network" not in coresys.host.features
|