Changeset 6949
- Timestamp:
- 12/18/07 22:09:19 (1 year ago)
- Files:
-
- django/trunk/docs/testing.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/testing.txt
r6929 r6949 283 283 By default this test database gets its name by prepending ``test_`` to the 284 284 value 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. 285 the tests will by default use an in-memory database (i.e., the database will be 286 created in memory, bypassing the filesystem entirely!). If you want to use a 287 different database name, specify the ``TEST_DATABASE_NAME`` setting. 287 288 288 289 Aside from using a separate database, the test runner will otherwise use all of
