Ingmar Delsink 67a14d0463
Add transmission-integration path and protocol (#104334)
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,
}