diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-09 11:42:27 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-09 11:42:27 -0400 |
| commit | 9700194195735300f86803b0d023a37a89f4dff0 (patch) | |
| tree | 1db9b72c403746c84da9797dbd56d6a76229ad1a /docs/internals/contributing/writing-code/unit-tests.txt | |
| parent | 4523fcd60101124a307bd4026296337087b66884 (diff) | |
Fixed #21222 - Documented that 'default' and 'other' must be different databases when running tests.
Thanks vernondcole for the suggestion.
Diffstat (limited to 'docs/internals/contributing/writing-code/unit-tests.txt')
| -rw-r--r-- | docs/internals/contributing/writing-code/unit-tests.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index cf344e1702..585b3911d3 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -64,11 +64,11 @@ two databases: * A ``default`` database. This database should use the backend that 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, this database can use any backend you - want. It doesn't need to use the same backend as the ``default`` - database (although it can use the same backend if you want to). +* A database with the alias ``other``. The ``other`` database is used to + establish that queries can be directed to different databases. As a result, + this database can use any backend you want. It doesn't need to use the same + backend as the ``default`` database (although it can use the same backend if + you want to). It cannot be the same database as the ``default``. If you're using a backend that isn't SQLite, you will need to provide other details for each database: |
