mirror of
https://github.com/home-assistant/core.git
synced 2025-05-01 04:37:52 +00:00

* ✅ rewrite remember_the_milk tests to pytest tests * ✅ rewrite reddit tests to pytest tests * Revert "✅ rewrite reddit tests to pytest tests" This reverts commit 7eae35f69ad61b29ddbbf2054c0464a8d90d9b97. Forgot to switch to a new branch 🙈
15 lines
292 B
Python
15 lines
292 B
Python
"""Constants for remember_the_milk tests."""
|
|
|
|
import json
|
|
|
|
PROFILE = "myprofile"
|
|
TOKEN = "mytoken"
|
|
JSON_STRING = json.dumps(
|
|
{
|
|
"myprofile": {
|
|
"token": "mytoken",
|
|
"id_map": {"1234": {"list_id": "0", "timeseries_id": "1", "task_id": "2"}},
|
|
}
|
|
}
|
|
)
|