Small rewording of docs/testing.txt changes from [5380]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5414 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-06-01 17:06:06 +00:00
parent a97c22bfa3
commit 80dfe69ddf
1 changed files with 5 additions and 7 deletions

View File

@ -571,13 +571,11 @@ database settings will the same as they would be for the project normally.
If you wish to use a name other than the default for the test database,
you can use the ``TEST_DATABASE_NAME`` setting to provide a name.
**New in Django development version:** If you wish to have fine-grained
control over the character set encoding used in your database, you can control
this with the ``TEST_DATABASE_CHARSET`` setting. For MySQL users, you can also
control the particular collation used by the test database with the
``TEST_DATABASE_COLLATION`` setting. Refer to the settings_ documentation for
details of these advanced settings.
**New in Django development version:** For fine-grained control over the
character encoding of your database, use the ``TEST_DATABASE_CHARSET`` setting.
If you're using MySQL, you can also use the ``TEST_DATABASE_COLLATION`` setting
to control the particular collation used by the test database. See the
settings_ documentation for details of these advanced settings.
.. _settings: ../settings/