* Add test for init * update tests * split common.py into const.py and __init__.py * Update tests/components/fyta/__init__.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * add autospec, tidy up * adjust len-test --------- Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
7 lines
216 B
Python
7 lines
216 B
Python
"""Common methods and const used across tests for FYTA."""
|
|
|
|
USERNAME = "fyta_user"
|
|
PASSWORD = "fyta_pass"
|
|
ACCESS_TOKEN = "123xyz"
|
|
EXPIRATION = "2030-12-31T10:00:00+00:00"
|
|
EXPIRATION_OLD = "2020-01-01T00:00:00+00:00"
|