Skip to content

Commit

Permalink
Corrected incomplete and incorrect docs from r14822.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14823 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Dec 5, 2010
1 parent b11c21d commit d53fd71
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions docs/ref/settings.txt
Expand Up @@ -427,6 +427,18 @@ Only supported for the ``mysql`` backend (see the `MySQL manual`_ for details).

.. _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
Expand Down
14 changes: 7 additions & 7 deletions docs/topics/testing.txt
Expand Up @@ -473,22 +473,22 @@ can specify the dependencies that exist using the
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']
}
}

Expand Down

0 comments on commit d53fd71

Please sign in to comment.