mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 02:07:54 +00:00
14 lines
305 B
Python
14 lines
305 B
Python
"""Tests for the Network Configuration integration."""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_get_source_ip():
|
|
"""Override mock of network util's async_get_source_ip."""
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_network():
|
|
"""Override mock of network util's async_get_adapters."""
|