diff options
Diffstat (limited to 'tests/check_framework/template_test_apps')
13 files changed, 24 insertions, 0 deletions
diff --git a/tests/check_framework/template_test_apps/__init__.py b/tests/check_framework/template_test_apps/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/check_framework/template_test_apps/__init__.py diff --git a/tests/check_framework/template_test_apps/different_tags_app/__init__.py b/tests/check_framework/template_test_apps/different_tags_app/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/check_framework/template_test_apps/different_tags_app/__init__.py diff --git a/tests/check_framework/template_test_apps/different_tags_app/apps.py b/tests/check_framework/template_test_apps/different_tags_app/apps.py new file mode 100644 index 0000000000..90d54b3d50 --- /dev/null +++ b/tests/check_framework/template_test_apps/different_tags_app/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class DifferentTagsAppAppConfig(AppConfig): + name = 'check_framework.template_test_apps.different_tags_app' diff --git a/tests/check_framework/template_test_apps/different_tags_app/templatetags/__init__.py b/tests/check_framework/template_test_apps/different_tags_app/templatetags/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/check_framework/template_test_apps/different_tags_app/templatetags/__init__.py diff --git a/tests/check_framework/template_test_apps/different_tags_app/templatetags/different_tags.py b/tests/check_framework/template_test_apps/different_tags_app/templatetags/different_tags.py new file mode 100644 index 0000000000..9bec93d8e5 --- /dev/null +++ b/tests/check_framework/template_test_apps/different_tags_app/templatetags/different_tags.py @@ -0,0 +1,3 @@ +from django.template import Library + +register = Library() diff --git a/tests/check_framework/template_test_apps/same_tags_app_1/__init__.py b/tests/check_framework/template_test_apps/same_tags_app_1/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/check_framework/template_test_apps/same_tags_app_1/__init__.py diff --git a/tests/check_framework/template_test_apps/same_tags_app_1/apps.py b/tests/check_framework/template_test_apps/same_tags_app_1/apps.py new file mode 100644 index 0000000000..44149177a0 --- /dev/null +++ b/tests/check_framework/template_test_apps/same_tags_app_1/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class SameTagsApp1AppConfig(AppConfig): + name = 'check_framework.template_test_apps.same_tags_app_1' diff --git a/tests/check_framework/template_test_apps/same_tags_app_1/templatetags/__init__.py b/tests/check_framework/template_test_apps/same_tags_app_1/templatetags/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/check_framework/template_test_apps/same_tags_app_1/templatetags/__init__.py diff --git a/tests/check_framework/template_test_apps/same_tags_app_1/templatetags/same_tags.py b/tests/check_framework/template_test_apps/same_tags_app_1/templatetags/same_tags.py new file mode 100644 index 0000000000..9bec93d8e5 --- /dev/null +++ b/tests/check_framework/template_test_apps/same_tags_app_1/templatetags/same_tags.py @@ -0,0 +1,3 @@ +from django.template import Library + +register = Library() diff --git a/tests/check_framework/template_test_apps/same_tags_app_2/__init__.py b/tests/check_framework/template_test_apps/same_tags_app_2/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/check_framework/template_test_apps/same_tags_app_2/__init__.py diff --git a/tests/check_framework/template_test_apps/same_tags_app_2/apps.py b/tests/check_framework/template_test_apps/same_tags_app_2/apps.py new file mode 100644 index 0000000000..d90c800d1f --- /dev/null +++ b/tests/check_framework/template_test_apps/same_tags_app_2/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class SameTagsApp2AppConfig(AppConfig): + name = 'check_framework.template_test_apps.same_tags_app_2' diff --git a/tests/check_framework/template_test_apps/same_tags_app_2/templatetags/__init__.py b/tests/check_framework/template_test_apps/same_tags_app_2/templatetags/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/check_framework/template_test_apps/same_tags_app_2/templatetags/__init__.py diff --git a/tests/check_framework/template_test_apps/same_tags_app_2/templatetags/same_tags.py b/tests/check_framework/template_test_apps/same_tags_app_2/templatetags/same_tags.py new file mode 100644 index 0000000000..9bec93d8e5 --- /dev/null +++ b/tests/check_framework/template_test_apps/same_tags_app_2/templatetags/same_tags.py @@ -0,0 +1,3 @@ +from django.template import Library + +register = Library() |
