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:
10
tests/components/bluetooth_adapters/test_init.py
Normal file
10
tests/components/bluetooth_adapters/test_init.py
Normal 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, {})
|
||||
Reference in New Issue
Block a user