mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
8 lines
225 B
Python
8 lines
225 B
Python
from .main import Test
|
|
|
|
|
|
class Inheritance(Test):
|
|
|
|
def TEMPLATE_CONTEXT_PROCESSORS(self):
|
|
return tuple(super(Inheritance, self).TEMPLATE_CONTEXT_PROCESSORS()) + (
|
|
'tests.settings.base.test_callback',)
|