mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 08:26:41 +01:00
Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Joostlek <joostlek@outlook.com>
21 lines
535 B
Python
21 lines
535 B
Python
"""Constants for the LoJack integration tests."""
|
|
|
|
from datetime import datetime
|
|
|
|
TEST_USERNAME = "test@example.com"
|
|
TEST_PASSWORD = "testpassword123"
|
|
|
|
TEST_DEVICE_ID = "12345"
|
|
TEST_DEVICE_NAME = "My Car"
|
|
TEST_VIN = "1HGBH41JXMN109186"
|
|
TEST_MAKE = "Honda"
|
|
TEST_MODEL = "Accord"
|
|
TEST_YEAR = 2021
|
|
TEST_USER_ID = "user_abc123"
|
|
TEST_LATITUDE = 37.7749
|
|
TEST_LONGITUDE = -122.4194
|
|
TEST_ACCURACY = 10.5
|
|
TEST_HEADING = 180.0
|
|
TEST_ADDRESS = "123 Main St, San Francisco, CA 94102"
|
|
TEST_TIMESTAMP = datetime.fromisoformat("2020-02-02T14:00:00Z")
|