Author: russellm
Date: 2010-12-04 19:03:39 -0600 (Sat, 04 Dec 2010)
New Revision: 14823

Modified:
   django/trunk/docs/ref/settings.txt
   django/trunk/docs/topics/testing.txt
Log:
Corrected incomplete and incorrect docs from r14822.

Modified: django/trunk/docs/ref/settings.txt
===================================================================
--- django/trunk/docs/ref/settings.txt  2010-12-05 00:44:34 UTC (rev 14822)
+++ django/trunk/docs/ref/settings.txt  2010-12-05 01:03:39 UTC (rev 14823)
@@ -427,6 +427,18 @@
 
 .. _MySQL manual: MySQL_
 
+.. setting:: TEST_DEPENDENCIES
+
+TEST_DEPENDENCIES
+~~~~~~~~~~~~~~~~~
+
+Default: ``['default']``, for all databases other than ``default``,
+which has no dependencies.
+
+The creation-order dependencies of the database. See the documentation
+on :ref:`controlling the creation order of test databases
+<topics-testing-creation-dependencies>` for details.
+
 .. setting:: TEST_MIRROR
 
 TEST_MIRROR

Modified: django/trunk/docs/topics/testing.txt
===================================================================
--- django/trunk/docs/topics/testing.txt        2010-12-05 00:44:34 UTC (rev 
14822)
+++ django/trunk/docs/topics/testing.txt        2010-12-05 01:03:39 UTC (rev 
14823)
@@ -473,22 +473,22 @@
     DATABASES = {
         'default': {
              # ... db settings
-             TEST_DEPENDENCIES = ['diamonds']
+             'TEST_DEPENDENCIES': ['diamonds']
         },
         'diamonds': {
             # ... db settings
-        }
+        },
         'clubs': {
             # ... db settings
-            TEST_DEPENDENCIES = ['diamonds']
-        }
+            'TEST_DEPENDENCIES': ['diamonds']
+        },
         'spades': {
             # ... db settings
-            TEST_DEPENDENCIES = ['diamonds','hearts']
-        }
+            'TEST_DEPENDENCIES': ['diamonds','hearts']
+        },
         'hearts': {
             # ... db settings
-            TEST_DEPENDENCIES = ['diamonds','clubs']
+            'TEST_DEPENDENCIES': ['diamonds','clubs']
         }
     }
 

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to