14 lines
337 B
Python
14 lines
337 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_auth')
|
|
|
|
settings = (
|
|
AppSetting('login_redirect_url', string_types),
|
|
AppSetting('logout_redirect_url', string_types),
|
|
)
|