Files
django-dav-events/dav_registration/tests/test_apps.py
T
2026-05-28 10:42:23 +02:00

13 lines
324 B
Python

from django.apps import apps
from django.core.exceptions import ImproperlyConfigured
from dav_base.tests.generic import AppSetting, AppsTestCase
class TestCase(AppsTestCase):
app_config = apps.get_app_config('dav_registration')
settings = (
AppSetting('privacy_policy', ImproperlyConfigured, str),
)