Files
django-dav-events/dav_auth/tests/test_apps.py
T
heinzel 50a33a9f47
Run tests / Execute tox to run the test suite (push) Successful in 3m38s
dav_auth: small refactorings and improvements under the hood
2026-05-28 16:50:44 +02:00

18 lines
646 B
Python

from django.apps import apps
from dav_base.tests.generic import AppSetting, AppsTestCase
class TestCase(AppsTestCase):
app_config = apps.get_app_config('dav_auth')
settings = (
AppSetting('login_redirect_url', 'root', str),
AppSetting('logout_redirect_url', 'root', str),
AppSetting('auto_password_length', 32, int),
AppSetting('auto_password_characters', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
'abcdefghijklmnopqrstuvwxyz'
'0123456789'
'#$%&@^~.,:;/_-*+!?', str),
)