mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 10:17:51 +00:00

* Add config flow to `pushover` * Add tests for reauth * add deprecated yaml issue * address comments * fix test error, other fixes * update translations
11 lines
271 B
Python
11 lines
271 B
Python
"""Tests for the pushover component."""
|
|
|
|
from homeassistant.components.pushover.const import CONF_USER_KEY
|
|
from homeassistant.const import CONF_API_KEY, CONF_NAME
|
|
|
|
MOCK_CONFIG = {
|
|
CONF_NAME: "Pushover",
|
|
CONF_API_KEY: "MYAPIKEY",
|
|
CONF_USER_KEY: "MYUSERKEY",
|
|
}
|