26 lines
794 B
Python
26 lines
794 B
Python
"""Test the Kodi integration init."""
|
|
from homeassistant.components.kodi.const import DOMAIN
|
|
from homeassistant.config_entries import ENTRY_STATE_LOADED, ENTRY_STATE_NOT_LOADED
|
|
|
|
from . import init_integration
|
|
|
|
from tests.async_mock import patch
|
|
|
|
|
|
async def test_unload_entry(hass):
|
|
"""Test successful unload of entry."""
|
|
with patch(
|
|
"homeassistant.components.kodi.media_player.async_setup_entry",
|
|
return_value=True,
|
|
):
|
|
entry = await init_integration(hass)
|
|
|
|
assert len(hass.config_entries.async_entries(DOMAIN)) == 1
|
|
assert entry.state == ENTRY_STATE_LOADED
|
|
|
|
assert await hass.config_entries.async_unload(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert entry.state == ENTRY_STATE_NOT_LOADED
|
|
assert not hass.data.get(DOMAIN)
|