Files
homeassistant-core/tests/components/pushover/__init__.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
271 B
Python
Raw Normal View History

2022-08-19 09:07:32 +03:00
"""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",
}