mirror of https://github.com/home-assistant/core
24 lines
729 B
Python
24 lines
729 B
Python
"""Test the One-Time Password (OTP) init."""
|
|
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_entry_setup_unload(
|
|
hass: HomeAssistant, otp_config_entry: MockConfigEntry
|
|
) -> None:
|
|
"""Test integration setup and unload."""
|
|
|
|
otp_config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(otp_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert otp_config_entry.state is ConfigEntryState.LOADED
|
|
|
|
await hass.config_entries.async_unload(otp_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert otp_config_entry.state is ConfigEntryState.NOT_LOADED
|