1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Ensure remote bluetooth adapters are loaded before integrations that need them (#85723)

This commit is contained in:
J. Nick Koston
2023-01-15 13:17:17 -10:00
committed by GitHub
parent cd31624768
commit 65ca62c991
40 changed files with 103 additions and 31 deletions

View File

@@ -0,0 +1,10 @@
"""Test the Bluetooth Adapters setup."""
from homeassistant.components.bluetooth_adapters import DOMAIN
from homeassistant.core import HomeAssistant
from homeassistant.setup import async_setup_component
async def test_setup(hass: HomeAssistant) -> None:
"""Ensure we can setup."""
assert await async_setup_component(hass, DOMAIN, {})