1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-02 16:36:08 +01:00
Files
core/tests/components/lojack/const.py
Devin Slick 2042f2e2bd Add Lojack integration (#162047)
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Joostlek <joostlek@outlook.com>
2026-03-16 22:09:10 +01:00

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")