2022-03-23 04:01:24 +00:00
|
|
|
"""Tests for the Deluge integration."""
|
|
|
|
|
|
|
|
from homeassistant.components.deluge.const import (
|
|
|
|
CONF_WEB_PORT,
|
|
|
|
DEFAULT_RPC_PORT,
|
|
|
|
DEFAULT_WEB_PORT,
|
|
|
|
)
|
2022-05-09 11:22:51 +00:00
|
|
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_PORT, CONF_USERNAME
|
2022-03-23 04:01:24 +00:00
|
|
|
|
|
|
|
CONF_DATA = {
|
|
|
|
CONF_HOST: "1.2.3.4",
|
|
|
|
CONF_USERNAME: "user",
|
|
|
|
CONF_PASSWORD: "password",
|
|
|
|
CONF_PORT: DEFAULT_RPC_PORT,
|
|
|
|
CONF_WEB_PORT: DEFAULT_WEB_PORT,
|
|
|
|
}
|