15 lines
370 B
Python
15 lines
370 B
Python
from django.apps import apps
|
|
from six import string_types
|
|
|
|
from .generic import AppSetting, AppsTestCase
|
|
|
|
|
|
class TestCase(AppsTestCase):
|
|
app_config = apps.get_app_config('dav_base')
|
|
|
|
settings = (
|
|
AppSetting('email_sender', string_types),
|
|
AppSetting('email_base_url', string_types),
|
|
AppSetting('email_subject_prefix', string_types),
|
|
)
|