summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/contributing/writing-code/unit-tests.txt6
-rw-r--r--docs/topics/testing/advanced.txt46
2 files changed, 32 insertions, 20 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt
index 688c746002..f37902e960 100644
--- a/docs/internals/contributing/writing-code/unit-tests.txt
+++ b/docs/internals/contributing/writing-code/unit-tests.txt
@@ -68,7 +68,7 @@ The :setting:`DATABASES` setting in any test settings module needs to define
two databases:
* A ``default`` database. This database should use the backend that
- you want to use for primary testing
+ you want to use for primary testing.
* A database with the alias ``other``. The ``other`` database is used to
establish that queries can be directed to different databases. As a result,
@@ -98,8 +98,8 @@ These test databases are deleted when the tests are finished.
You will also need to ensure that your database uses UTF-8 as the default
character set. If your database server doesn't use UTF-8 as a default charset,
-you will need to include a value for :setting:`TEST_CHARSET` in the settings
-dictionary for the applicable database.
+you will need to include a value for :setting:`CHARSET <TEST_CHARSET>` in the
+test settings dictionary for the applicable database.
.. _runtests-specifying-labels:
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt
index 830df3b4ac..6adae9ed50 100644
--- a/docs/topics/testing/advanced.txt
+++ b/docs/topics/testing/advanced.txt
@@ -97,7 +97,9 @@ configuration::
'ENGINE': 'django.db.backends.mysql',
'NAME': 'myproject',
'HOST': 'dbreplica',
- 'TEST_MIRROR': 'default'
+ 'TEST': {
+ 'MIRROR': 'default',
+ },
# ... plus some other settings
}
}
@@ -111,8 +113,8 @@ normal activity, any write to ``default`` will appear on ``replica``.
If Django created two independent test databases, this would break any
tests that expected replication to occur. However, the ``replica``
database has been configured as a test mirror (using the
-:setting:`TEST_MIRROR` setting), indicating that under testing,
-``replica`` should be treated as a mirror of ``default``.
+:setting:`MIRROR <TEST_MIRROR>` test setting), indicating that under
+testing, ``replica`` should be treated as a mirror of ``default``.
When the test environment is configured, a test version of ``replica``
will *not* be created. Instead the connection to ``replica``
@@ -132,41 +134,51 @@ However, no guarantees are made on the creation order of any other
databases in your test setup.
If your database configuration requires a specific creation order, you
-can specify the dependencies that exist using the
-:setting:`TEST_DEPENDENCIES` setting. Consider the following
-(simplified) example database configuration::
+can specify the dependencies that exist using the :setting:`DEPENDENCIES
+<TEST_DEPENDENCIES>` test setting. Consider the following (simplified)
+example database configuration::
DATABASES = {
'default': {
- # ... db settings
- 'TEST_DEPENDENCIES': ['diamonds']
+ # ... db settings
+ 'TEST': {
+ 'DEPENDENCIES': ['diamonds'],
+ },
},
'diamonds': {
- # ... db settings
- 'TEST_DEPENDENCIES': []
+ ... db settings
+ 'TEST': {
+ 'DEPENDENCIES': [],
+ },
},
'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'],
+ },
}
}
Under this configuration, the ``diamonds`` database will be created first,
as it is the only database alias without dependencies. The ``default`` and
``clubs`` alias will be created next (although the order of creation of this
-pair is not guaranteed); then ``hearts``; and finally ``spades``.
+pair is not guaranteed), then ``hearts``, and finally ``spades``.
-If there are any circular dependencies in the
-:setting:`TEST_DEPENDENCIES` definition, an ``ImproperlyConfigured``
-exception will be raised.
+If there are any circular dependencies in the :setting:`DEPENDENCIES
+<TEST_DEPENDENCIES>` definition, an
+:exc:`~django.core.exceptions.ImproperlyConfigured` exception will be raised.
Advanced features of ``TransactionTestCase``
============================================