mirror of https://github.com/home-assistant/core
30 lines
879 B
Python
30 lines
879 B
Python
"""Tests for the Webmin integration."""
|
|
|
|
from homeassistant.components.webmin.const import DOMAIN
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .conftest import async_init_integration
|
|
|
|
|
|
async def test_unload_entry(hass: HomeAssistant) -> None:
|
|
"""Test successful unload of entry."""
|
|
|
|
entry = await async_init_integration(hass)
|
|
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
|
|
assert await hass.config_entries.async_unload(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert entry.state is ConfigEntryState.NOT_LOADED
|
|
assert not hass.data.get(DOMAIN)
|
|
|
|
|
|
async def test_entry_without_mac_address(hass: HomeAssistant) -> None:
|
|
"""Test an entry without MAC address."""
|
|
|
|
entry = await async_init_integration(hass, False)
|
|
|
|
assert entry.runtime_data.unique_id == entry.entry_id
|