hass-core/tests/components/fritzbox/conftest.py
Joost Lekkerkerker 6bb4e7d62c
Bump ruff to 0.3.4 (#112690)
Co-authored-by: Sid <27780930+autinerd@users.noreply.github.com>
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
Co-authored-by: J. Nick Koston <nick@koston.org>
2024-03-26 00:02:16 +01:00

16 lines
452 B
Python

"""Fixtures for the AVM Fritz!Box integration."""
from unittest.mock import Mock, patch
import pytest
@pytest.fixture(name="fritz")
def fritz_fixture() -> Mock:
"""Patch libraries."""
with (
patch("homeassistant.components.fritzbox.Fritzhome") as fritz,
patch("homeassistant.components.fritzbox.config_flow.Fritzhome"),
):
fritz.return_value.get_prefixed_host.return_value = "http://1.2.3.4"
yield fritz