mirror of
https://github.com/home-assistant/core.git
synced 2026-02-23 03:17:06 +00:00
* Added additional sensor to Weheat * Added tests for old and new sensors * Added energy sensor * Changed tests to use snapshot * Removed unused value and regenerated the ambr * Apply suggestions from code review Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * changed DHW sensor creation * Wrapped lambda function --------- Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
17 lines
401 B
Python
17 lines
401 B
Python
"""Constants for weheat tests."""
|
|
|
|
CLIENT_ID = "1234"
|
|
CLIENT_SECRET = "5678"
|
|
|
|
USER_UUID_1 = "0000-1111-2222-3333"
|
|
|
|
CONF_REFRESH_TOKEN = "refresh_token"
|
|
CONF_AUTH_IMPLEMENTATION = "auth_implementation"
|
|
MOCK_REFRESH_TOKEN = "mock_refresh_token"
|
|
MOCK_ACCESS_TOKEN = "mock_access_token"
|
|
|
|
TEST_HP_UUID = "0000-1111-2222-3333"
|
|
TEST_NAME = "Test Heat Pump"
|
|
TEST_MODEL = "Test Model"
|
|
TEST_SN = "SN-Test-This"
|