Django

Code

Changeset 2846

Show
Ignore:
Timestamp:
05/04/06 23:27:16 (2 years ago)
Author:
adrian
Message:

Fixed #1216 -- Noted in docs/contributing.txt 'Unit tests' section that the user needs permission to create a database

Files:

Legend:

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

    r2830 r2846  
    248248Yes, the unit tests need a settings module, but only for database connection 
    249249info -- the ``DATABASE_ENGINE``, ``DATABASE_USER`` and ``DATABASE_PASSWORD``. 
     250 
    250251The unit tests will not touch your database; they create a new database, called 
    251 ``django_test_db``, which is deleted when the tests are finished. 
     252``django_test_db``, which is deleted when the tests are finished. This means 
     253your user account needs permission to execute ``CREATE DATABASE``. 
    252254 
    253255Requesting features