Ticket #3936: test_db_creation.patch

File test_db_creation.patch, 610 bytes (added by Vinay Sajip <vinay_sajip@…>, 17 years ago)

Patch for test database creation clarification

  • docs/testing.txt

     
    434434If you wish to use a name other than the default for the test database,
    435435you can use the ``TEST_DATABASE_NAME`` setting to provide a name.
    436436
     437Note that the test database is created using the ``DATABASE_USER`` setting.
     438This user will need to have the privileges needed to create the test database.
     439
    437440Once the test database has been established, Django will run your tests.
    438441If everything goes well, at the end you'll see::
Back to Top