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:
Jason Rebelo 2020-10-01 21:55:04 +02:00 committed by GitHub
parent 4b225a87c5
commit cad2304968
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 61 additions and 70 deletions

View 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"}},
}
}
)