Rewrite remember_the_milk tests to pytest style tests (#41002)
* ✅ rewrite remember_the_milk tests to pytest tests
* ✅ rewrite reddit tests to pytest tests
* Revert "✅ rewrite reddit tests to pytest tests"
This reverts commit 7eae35f69a
.
Forgot to switch to a new branch 🙈
This commit is contained in:
parent
4b225a87c5
commit
cad2304968
2 changed files with 61 additions and 70 deletions
14
tests/components/remember_the_milk/const.py
Normal file
14
tests/components/remember_the_milk/const.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
"""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"}},
|
||||
}
|
||||
}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue