summaryrefslogtreecommitdiff
path: root/tests/flatpages_tests/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/flatpages_tests/settings.py')
-rw-r--r--tests/flatpages_tests/settings.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/flatpages_tests/settings.py b/tests/flatpages_tests/settings.py
new file mode 100644
index 0000000000..ad888f9d95
--- /dev/null
+++ b/tests/flatpages_tests/settings.py
@@ -0,0 +1,11 @@
+import os
+
+FLATPAGES_TEMPLATES = [{
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [os.path.join(os.path.dirname(__file__), 'templates')],
+ 'OPTIONS': {
+ 'context_processors': (
+ 'django.contrib.auth.context_processors.auth',
+ ),
+ },
+}]