mirror of https://github.com/django/django.git
Fixed #16608 -- Clarified the description of the destroy_test_db method and cleaned up various other reST/Sphinx-related bits in the testing docs. Thanks to Stan for the report and Julien for the draft patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16625 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b825680df8
commit
41b31b4d09
|
@ -1278,6 +1278,7 @@ already have some data in your database. See the :djadmin:`dumpdata
|
||||||
documentation<dumpdata>` for more details.
|
documentation<dumpdata>` for more details.
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
If you've ever run :djadmin:`manage.py syncdb<syncdb>`, you've
|
If you've ever run :djadmin:`manage.py syncdb<syncdb>`, you've
|
||||||
already used a fixture without even knowing it! When you call
|
already used a fixture without even knowing it! When you call
|
||||||
:djadmin:`syncdb` in the database for the first time, Django
|
:djadmin:`syncdb` in the database for the first time, Django
|
||||||
|
@ -1919,10 +1920,12 @@ utility methods in the ``django.test.utils`` module.
|
||||||
magic hooks into the template system and restoring normal email
|
magic hooks into the template system and restoring normal email
|
||||||
services.
|
services.
|
||||||
|
|
||||||
|
.. currentmodule:: django.db.connection.creation
|
||||||
|
|
||||||
The creation module of the database backend (``connection.creation``)
|
The creation module of the database backend (``connection.creation``)
|
||||||
also provides some utilities that can be useful during testing.
|
also provides some utilities that can be useful during testing.
|
||||||
|
|
||||||
.. function:: create_test_db(verbosity=1, autoclobber=False)
|
.. function:: create_test_db([verbosity=1, autoclobber=False])
|
||||||
|
|
||||||
Creates a new test database and runs ``syncdb`` against it.
|
Creates a new test database and runs ``syncdb`` against it.
|
||||||
|
|
||||||
|
@ -1944,10 +1947,11 @@ also provides some utilities that can be useful during testing.
|
||||||
:setting:`NAME` in :setting:`DATABASES` to match the name of the test
|
:setting:`NAME` in :setting:`DATABASES` to match the name of the test
|
||||||
database.
|
database.
|
||||||
|
|
||||||
.. function:: destroy_test_db(old_database_name, verbosity=1)
|
.. function:: destroy_test_db(old_database_name, [verbosity=1])
|
||||||
|
|
||||||
Destroys the database whose name is in stored in :setting:`NAME` in the
|
Destroys the database whose name is the value of :setting:`NAME` in
|
||||||
:setting:`DATABASES`, and sets :setting:`NAME` to use the
|
:setting:`DATABASES`, and sets :setting:`NAME` to the value of
|
||||||
provided name.
|
``old_database_name``.
|
||||||
|
|
||||||
``verbosity`` has the same behavior as in ``run_tests()``.
|
The ``verbosity`` argument has the same behavior as for
|
||||||
|
:class:`~django.test.simple.DjangoTestSuiteRunner`.
|
||||||
|
|
Loading…
Reference in New Issue