core/tests/components/sonarr/__init__.py

10 lines
252 B
Python
Raw Normal View History

"""Tests for the Sonarr component."""
2022-02-22 17:33:10 +00:00
from homeassistant.const import CONF_API_KEY, CONF_URL
MOCK_REAUTH_INPUT = {CONF_API_KEY: "test-api-key-reauth"}
MOCK_USER_INPUT = {
2022-02-22 17:33:10 +00:00
CONF_URL: "http://192.168.1.189:8989",
2022-01-31 22:59:18 +00:00
CONF_API_KEY: "MOCK_API_KEY",
}