summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-12-19 04:09:19 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-12-19 04:09:19 +0000
commit6e94b560440bfda3d14b91665a9f5a8e10b26009 (patch)
tree043ca2a32b61346f8c2efc0d039896ba5250aa7a /docs
parent36a748787d6b1b8f2496b535a72f5731c9710852 (diff)
Edited docs/testing.txt changes from [6929]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6949 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/testing.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/testing.txt b/docs/testing.txt
index 21b1f4d6a2..54b8ba9ae6 100644
--- a/docs/testing.txt
+++ b/docs/testing.txt
@@ -282,8 +282,9 @@ when all the tests have been executed.
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
-the tests will by default use a memory resident database. If you want to use
-a different database name, specify the ``TEST_DATABASE_NAME`` setting.
+the tests will by default use an in-memory database (i.e., the database will be
+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
the same database settings you have in your settings file: ``DATABASE_ENGINE``,