mirror of https://github.com/home-assistant/core
26 lines
464 B
Python
26 lines
464 B
Python
"""Tests for Transmission."""
|
|
|
|
OLD_MOCK_CONFIG_DATA = {
|
|
"name": "Transmission",
|
|
"host": "0.0.0.0",
|
|
"username": "user",
|
|
"password": "pass",
|
|
"port": 9091,
|
|
}
|
|
|
|
MOCK_CONFIG_DATA_VERSION_1_1 = {
|
|
"host": "0.0.0.0",
|
|
"username": "user",
|
|
"password": "pass",
|
|
"port": 9091,
|
|
}
|
|
|
|
MOCK_CONFIG_DATA = {
|
|
"ssl": False,
|
|
"path": "/transmission/rpc",
|
|
"host": "0.0.0.0",
|
|
"username": "user",
|
|
"password": "pass",
|
|
"port": 9091,
|
|
}
|