diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2020-07-21 10:35:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-21 10:35:12 +0200 |
| commit | 3f2821af6bc48fa8e7970c1ce27bc54c3172545e (patch) | |
| tree | 807b209dd7bf77cde680f54a18395672c1cb607f /tests/apps/two_default_configs_app | |
| parent | 6ec5eb5d74fd18a91256010706ab8b5b583526a9 (diff) | |
Fixed #31180 -- Configured applications automatically.
Diffstat (limited to 'tests/apps/two_default_configs_app')
| -rw-r--r-- | tests/apps/two_default_configs_app/__init__.py | 0 | ||||
| -rw-r--r-- | tests/apps/two_default_configs_app/apps.py | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/tests/apps/two_default_configs_app/__init__.py b/tests/apps/two_default_configs_app/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/apps/two_default_configs_app/__init__.py diff --git a/tests/apps/two_default_configs_app/apps.py b/tests/apps/two_default_configs_app/apps.py new file mode 100644 index 0000000000..3cbcc411b0 --- /dev/null +++ b/tests/apps/two_default_configs_app/apps.py @@ -0,0 +1,11 @@ +from django.apps import AppConfig + + +class TwoConfig(AppConfig): + default = True + name = 'apps.two_default_configs_app' + + +class TwoConfigBis(AppConfig): + default = True + name = 'apps.two_default_configs_app' |
