mirror of
https://github.com/home-assistant/core.git
synced 2025-04-23 08:47:57 +00:00

* 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>
8 lines
216 B
Python
8 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"
|