Improved tests for app settings and added tests for dav_base.config.modules.ModuleMeta
Run tests / Execute tox to run the test suite (push) Successful in 3m27s

This commit is contained in:
2026-05-21 13:38:34 +02:00
parent 0c7e4493d7
commit 8d0069a9e6
9 changed files with 110 additions and 32 deletions
+4
View File
@@ -0,0 +1,4 @@
{
"url_prefix": "test",
"app_config": ".apps.AppConfig"
}
+8
View File
@@ -0,0 +1,8 @@
from django.urls import re_path
from django.views import generic
app_name = 'fake_app'
urlpatterns = [
re_path(r'^$', generic.TemplateView.as_view(), name='root'),
]