12 lines
283 B
Python
12 lines
283 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"
|