diff --git a/django_expanded_test_cases/mixins/__init__.py b/django_expanded_test_cases/mixins/__init__.py index d5eddac309694c6979c54dbc6dda36f71a23ab9b..23aae2417f1031a2d1dbe2f128a0ef0905cdffdd 100644 --- a/django_expanded_test_cases/mixins/__init__.py +++ b/django_expanded_test_cases/mixins/__init__.py @@ -3,6 +3,10 @@ Imports logic for "django_expanded_test_cases/mixins/" folder. Makes project imports to this folder behave like a standard file. """ +# Expose our "template" mixin to the world, so other projects can use it. +from .core_mixin import BaseMixin as EmptyTemplateMixin + + # Expanded "Base" TestCase utility mixins. from .core_mixin import CoreTestCaseMixin