1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00
Files
core/tests/components/adguard/__init__.py
2025-11-23 13:00:27 +01:00

24 lines
655 B
Python

"""Tests for the AdGuard Home integration."""
from collections.abc import AsyncGenerator
from unittest.mock import patch
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
async def setup_integration(
hass: HomeAssistant,
config_entry: MockConfigEntry,
adguard_mock: AsyncGenerator,
) -> None:
"""Fixture for setting up the component."""
config_entry.add_to_hass(hass)
with patch(
"homeassistant.components.adguard.AdGuardHome",
return_value=adguard_mock,
):
await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()