mirror of
https://github.com/home-assistant/core.git
synced 2026-08-28 18:24:50 -05:00
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"
|