mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 11:17:53 +00:00
11 lines
345 B
Python
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, {})
|