Files
django-dav-events/dav_registration/tests/test_apps.py
T
heinzel 8d0069a9e6
Run tests / Execute tox to run the test suite (push) Successful in 3m27s
Improved tests for app settings and added tests for dav_base.config.modules.ModuleMeta
2026-05-21 13:38:34 +02:00

14 lines
362 B
Python

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