mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-04-29 03:04:49 +00:00
9 lines
233 B
Python
9 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',)
|