1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-15 19:39:14 +00:00
Ingmar Delsink 67a14d0463
Add transmission-integration path and protocol ()
This updates the config_flow migration from v1.1 to v1.2
including migration tests
2024-03-21 11:05:36 +01:00

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,
}