Skip to content

Commit

Permalink
Edited docs/testing.txt changes from [6929]
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6949 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Dec 19, 2007
1 parent 36a7487 commit 6e94b56
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/testing.txt
Expand Up @@ -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``,
Expand Down

0 comments on commit 6e94b56

Please sign in to comment.