summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-08 03:42:19 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-08 03:42:19 +0000
commitb72c7d0517f2aaf7dadcad94116ba8aefea3e61a (patch)
tree59f31a6f5d5260d3f3dc46547ced9f84ca8a8b69
parentfaa31732caa17d942b05fd4e25c49bb0589ce76f (diff)
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. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5168 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/testing.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/testing.txt b/docs/testing.txt
index b3b33e9678..ea2d9d1b75 100644
--- a/docs/testing.txt
+++ b/docs/testing.txt
@@ -516,6 +516,10 @@ database settings will the same as they would be for the project normally.
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::