summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-10-27 22:38:15 +0200
committerClaude Paroz <claude@2xlibre.net>2012-10-30 22:23:28 +0100
commit9a02851340c5c30b8e2c174783cd86d5cab7ab81 (patch)
tree6cf7463a82b709872a12fd89952189ee9141dafb /docs
parent43d7cee86e05dc267d66c3a308746fc1ac58271e (diff)
Fixed #17744 -- Reset default file storage with setting_changed signal
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing.txt19
1 files changed, 10 insertions, 9 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 7c25a8b3ff..f5fd4fe3e6 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -1594,15 +1594,16 @@ callbacks to clean up and otherwise reset state when settings are changed.
Django itself uses this signal to reset various data:
-=========================== ========================
-Overriden settings Data reset
-=========================== ========================
-USE_TZ, TIME_ZONE Databases timezone
-TEMPLATE_CONTEXT_PROCESSORS Context processors cache
-TEMPLATE_LOADERS Template loaders cache
-SERIALIZATION_MODULES Serializers cache
-LOCALE_PATHS, LANGUAGE_CODE Default translation and loaded translations
-=========================== ========================
+================================ ========================
+Overriden settings Data reset
+================================ ========================
+USE_TZ, TIME_ZONE Databases timezone
+TEMPLATE_CONTEXT_PROCESSORS Context processors cache
+TEMPLATE_LOADERS Template loaders cache
+SERIALIZATION_MODULES Serializers cache
+LOCALE_PATHS, LANGUAGE_CODE Default translation and loaded translations
+MEDIA_ROOT, DEFAULT_FILE_STORAGE Default file storage
+================================ ========================
Emptying the test outbox
~~~~~~~~~~~~~~~~~~~~~~~~