9 lines
264 B
Python
9 lines
264 B
Python
|
"""Test honeywell setup process."""
|
||
|
|
||
|
|
||
|
async def test_setup_entry(hass, config_entry):
|
||
|
"""Initialize the config entry."""
|
||
|
config_entry.add_to_hass(hass)
|
||
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
||
|
await hass.async_block_till_done()
|