1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-01 04:37:52 +00:00

11 lines
345 B
Python

"""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, {})