summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/testing.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/testing.txt b/docs/testing.txt
index c9b23c2948..85f36518a3 100644
--- a/docs/testing.txt
+++ b/docs/testing.txt
@@ -1026,6 +1026,9 @@ a number of utility methods in the ``django.test.utils`` module.
black magic hooks into the template system and restoring normal e-mail
services.
+The creation module of the database backend (``connection.creation``) also
+provides some utilities that can be useful during testing.
+
``create_test_db(verbosity=1, autoclobber=False)``
Creates a new test database and runs ``syncdb`` against it.
@@ -1044,7 +1047,7 @@ a number of utility methods in the ``django.test.utils`` module.
``create_test_db()`` has the side effect of modifying
``settings.DATABASE_NAME`` to match the name of the test database.
- New in the Django development version, this function returns the name of
+ **New in Django development version:** This function returns the name of
the test database that it created.
``destroy_test_db(old_database_name, verbosity=1)``