hass-core/tests/components/zamg/__init__.py
Daniel Gangl 8ca92254b6
Correct zamg config flow comments (#81369)
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
fixes undefined
2022-12-20 11:47:32 +01:00

18 lines
491 B
Python

"""Tests for the ZAMG component."""
from homeassistant import config_entries
from homeassistant.components.zamg.const import CONF_STATION_ID, DOMAIN as ZAMG_DOMAIN
from .conftest import TEST_STATION_ID, TEST_STATION_NAME
FIXTURE_CONFIG_ENTRY = {
"entry_id": "1",
"domain": ZAMG_DOMAIN,
"title": TEST_STATION_NAME,
"data": {
CONF_STATION_ID: TEST_STATION_ID,
},
"options": None,
"source": config_entries.SOURCE_USER,
"unique_id": TEST_STATION_ID,
}