14 lines
335 B
Python
14 lines
335 B
Python
from django.apps import apps
|
|
|
|
from .generic import AppSetting, AppsTestCase
|
|
|
|
|
|
class TestCase(AppsTestCase):
|
|
app_config = apps.get_app_config('dav_base')
|
|
|
|
settings = (
|
|
AppSetting('email_sender', basestring),
|
|
AppSetting('email_base_url', basestring),
|
|
AppSetting('email_subject_prefix', basestring),
|
|
)
|