15 lines
489 B
Python
15 lines
489 B
Python
"""Fixtures for the AVM Fritz!Box integration."""
|
|
import pytest
|
|
|
|
from tests.async_mock import Mock, patch
|
|
|
|
|
|
@pytest.fixture(name="fritz")
|
|
def fritz_fixture() -> Mock:
|
|
"""Patch libraries."""
|
|
with patch("homeassistant.components.fritzbox.socket") as socket, patch(
|
|
"homeassistant.components.fritzbox.Fritzhome"
|
|
) as fritz, patch("homeassistant.components.fritzbox.config_flow.Fritzhome"):
|
|
socket.gethostbyname.return_value = "FAKE_IP_ADDRESS"
|
|
yield fritz
|