mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 19:57:52 +00:00

* test storage save and load * fix bug exposed by test * refactor test * add JSON for test account/location * create helpers to load JSON * refactor test * baseline refactor * tweak * update requiremenst * rationalise code * remove conditional in test * refactor test * mypy fix * tweak tests * working test * working test 4 * working test 5 * add typed dicts * working dtms * lint * fix dtm asserts * doc strings * list * tweak conditional * tweak test data sets to extend coverage * leverage conftest.py for subsequent tests * revert test storage * revert part two * rename symbols * remove anachronism * stop unwanted DNS lookup * Clean up type ignores * Format --------- Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
11 lines
269 B
Python
11 lines
269 B
Python
"""Constants for the evohome tests."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
ACCESS_TOKEN: Final = "at_1dc7z657UKzbhKA..."
|
|
REFRESH_TOKEN: Final = "rf_jg68ZCKYdxEI3fF..."
|
|
SESSION_ID: Final = "F7181186..."
|
|
USERNAME: Final = "test_user@gmail.com"
|