mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> Co-authored-by: Franck Nijhof <git@frenck.dev>
11 lines
254 B
Python
11 lines
254 B
Python
"""Tests for the Sonarr component."""
|
|
|
|
from homeassistant.const import CONF_API_KEY, CONF_URL
|
|
|
|
MOCK_REAUTH_INPUT = {CONF_API_KEY: "test-api-key-reauth"}
|
|
|
|
MOCK_USER_INPUT = {
|
|
CONF_URL: "http://192.168.1.189:8989/",
|
|
CONF_API_KEY: "MOCK_API_KEY",
|
|
}
|