mirror of
https://github.com/home-assistant/core.git
synced 2026-07-01 11:46:40 +01:00
12 lines
367 B
Python
12 lines
367 B
Python
"""Test config init."""
|
|
|
|
from homeassistant.components.config import DOMAIN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
|
async def test_config_setup(hass: HomeAssistant) -> None:
|
|
"""Test it sets up hassbian."""
|
|
await async_setup_component(hass, DOMAIN, {})
|
|
assert "config" in hass.config.components
|