django-configurations/configurations/tests/settings/multiple_inheritance.py

9 lines
233 B
Python
Raw Normal View History

2012-07-21 13:56:04 +00:00
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',)