2017-02-11 17:29:05 -08:00
|
|
|
"""Test config init."""
|
2022-03-18 13:09:10 +01:00
|
|
|
from homeassistant.setup import async_setup_component
|
2017-02-11 17:29:05 -08:00
|
|
|
|
|
|
|
|
2020-01-02 00:16:27 +01:00
|
|
|
async def test_config_setup(hass, loop):
|
2017-02-11 17:29:05 -08:00
|
|
|
"""Test it sets up hassbian."""
|
2020-01-02 00:16:27 +01:00
|
|
|
await async_setup_component(hass, "config", {})
|
2019-07-31 12:25:30 -07:00
|
|
|
assert "config" in hass.config.components
|