Files
core/tests/components/paperless_ngx/const.py
Florian von Garrel 8c971904ca Add reauth and reconfigure to paperless (#145469)
* Add reauth and reconfigure

* Reauth and reconfigure in different functions

* Add duplicate check

* Add test for reconfigure duplicate

* Removed seconds config entry fixture
2025-05-25 14:03:13 +02:00

16 lines
356 B
Python

"""Constants for the Paperless NGX integration tests."""
from homeassistant.const import CONF_API_KEY, CONF_URL
USER_INPUT_ONE = {
CONF_URL: "https://192.168.69.16:8000",
CONF_API_KEY: "12345678",
}
USER_INPUT_TWO = {
CONF_URL: "https://paperless.example.de",
CONF_API_KEY: "87654321",
}
USER_INPUT_REAUTH = {CONF_API_KEY: "192837465"}