django-configurations/configurations/tests/settings/multiple_inheritance.py
2012-07-21 15:56:04 +02:00

8 lines
233 B
Python

from .main import Test
class Inheritance(Test):
def TEMPLATE_CONTEXT_PROCESSORS(self):
return super(Inheritance, self).TEMPLATE_CONTEXT_PROCESSORS() + (
'configurations.tests.settings.base.test_callback',)