mirror of
https://github.com/home-assistant/core.git
synced 2026-05-27 10:46:38 +01:00
c3ba086fad
Co-authored-by: Joostlek <joostlek@outlook.com>
15 lines
269 B
Python
15 lines
269 B
Python
"""Test constants used in Cync tests."""
|
|
|
|
import time
|
|
|
|
import pycync
|
|
|
|
MOCKED_USER = pycync.User(
|
|
"test_token",
|
|
"test_refresh_token",
|
|
"test_authorize_string",
|
|
123456789,
|
|
expires_at=(time.time() * 1000) + 3600000,
|
|
)
|
|
MOCKED_EMAIL = "test@testuser.com"
|