13 lines
284 B
Python
13 lines
284 B
Python
from django.apps import apps
|
|
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', string_types),
|
|
)
|