Edited docs/testing.txt changes from [6929]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6949 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-12-19 04:09:19 +00:00
parent 36a748787d
commit 6e94b56044
1 changed files with 3 additions and 2 deletions

View File

@ -282,8 +282,9 @@ when all the tests have been executed.
By default this test database gets its name by prepending ``test_`` to the By default this test database gets its name by prepending ``test_`` to the
value of the ``DATABASE_NAME`` setting. When using the SQLite database engine value of the ``DATABASE_NAME`` setting. When using the SQLite database engine
the tests will by default use a memory resident database. If you want to use the tests will by default use an in-memory database (i.e., the database will be
a different database name, specify the ``TEST_DATABASE_NAME`` setting. created in memory, bypassing the filesystem entirely!). If you want to use a
different database name, specify the ``TEST_DATABASE_NAME`` setting.
Aside from using a separate database, the test runner will otherwise use all of Aside from using a separate database, the test runner will otherwise use all of
the same database settings you have in your settings file: ``DATABASE_ENGINE``, the same database settings you have in your settings file: ``DATABASE_ENGINE``,