mirror of
https://github.com/home-assistant/supervisor.git
synced 2026-09-23 18:21:20 +01:00
13 lines
318 B
Python
13 lines
318 B
Python
"""Test NetwrokInterface."""
|
|
import pytest
|
|
|
|
from supervisor.dbus.network import NetworkManager
|
|
|
|
from tests.const import TEST_INTERFACE
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_network_manager(network_manager: NetworkManager):
|
|
"""Test network manager update."""
|
|
assert TEST_INTERFACE in network_manager.interfaces
|