Django

Code

Changeset 6949

Show
Ignore:
Timestamp:
12/18/07 22:09:19 (1 year ago)
Author:
adrian
Message:

Edited docs/testing.txt changes from [6929]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/testing.txt

    r6929 r6949  
    283283By default this test database gets its name by prepending ``test_`` to the 
    284284value of the ``DATABASE_NAME`` setting. When using the SQLite database engine 
    285 the tests will by default use a memory resident database. If you want to use 
    286 a different database name, specify the ``TEST_DATABASE_NAME`` setting. 
     285the tests will by default use an in-memory database (i.e., the database will be 
     286created in memory, bypassing the filesystem entirely!). If you want to use a 
     287different database name, specify the ``TEST_DATABASE_NAME`` setting. 
    287288 
    288289Aside from using a separate database, the test runner will otherwise use all of