Author: mtredinnick Date: 2007-05-07 22:42:19 -0500 (Mon, 07 May 2007) New Revision: 5168
Modified: django/trunk/docs/testing.txt Log: Fixed #3936 -- Mentioned that the DATABASE_USER in the test settings file needs permission to create a new database on the system. Patch from Vinay Sajip. Modified: django/trunk/docs/testing.txt =================================================================== --- django/trunk/docs/testing.txt 2007-05-08 03:36:16 UTC (rev 5167) +++ django/trunk/docs/testing.txt 2007-05-08 03:42:19 UTC (rev 5168) @@ -516,6 +516,10 @@ If you wish to use a name other than the default for the test database, you can use the ``TEST_DATABASE_NAME`` setting to provide a name. +The test database is created by the user in the ``DATABASE_USER`` setting. +This user needs to have sufficient privileges to create a new database on the +system. + Once the test database has been established, Django will run your tests. If everything goes well, at the end you'll see:: --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
