diff --git a/docs/topics/testing/overview.txt b/docs/topics/testing/overview.txt
index 420401c..63df8cf 100644
a
|
b
|
This flush/load procedure is repeated for each test in the test case, so you
|
1229 | 1229 | can be certain that the outcome of a test will not be affected by another test, |
1230 | 1230 | or by the order of test execution. |
1231 | 1231 | |
| 1232 | If you are using multiple databases, fixtures are only loaded into the |
| 1233 | ``default`` database by default. If you set :attr:`multi_db=True |
| 1234 | <TransactionTestCase.multi_db>`, fixtures are loaded into all databases. |
| 1235 | |
1232 | 1236 | URLconf configuration |
1233 | 1237 | ~~~~~~~~~~~~~~~~~~~~~ |
1234 | 1238 | |
… |
… |
For example::
|
1294 | 1298 | This test case will flush *all* the test databases before running |
1295 | 1299 | ``testIndexPageView``. |
1296 | 1300 | |
| 1301 | The ``multi_db`` flag also affects which databases the fixtures from |
| 1302 | :attr:`TransactionTestCase.fixtures` are loaded into. By default |
| 1303 | (when ``multi_db=False``), fixtures are only loaded into the ``default`` |
| 1304 | database. If ``multi_db=True``, fixtures are loaded into all databases. |
| 1305 | |
1297 | 1306 | .. _overriding-settings: |
1298 | 1307 | |
1299 | 1308 | Overriding settings |