diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-01-18 23:53:08 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-01-18 23:53:08 +0000 |
| commit | 9aba6f807ebaa4aca9885142ce2d6f5e162cb8cd (patch) | |
| tree | f3910e11a1eb6f4588195680f74669cee6e8a901 /docs/ref/settings.txt | |
| parent | be26f1ace4532196b579c903ca77e1cd947a3bd4 (diff) | |
Fixed #12638 -- Minor documentation cleanups around the new class-based test runners. Thanks to Ramiro Morales for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12260 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/settings.txt')
| -rw-r--r-- | docs/ref/settings.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index daedc87d21..ca63aaf478 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -1409,9 +1409,12 @@ misspelled) variables. See :ref:`invalid-template-variables`.. TEST_RUNNER ----------- -Default: ``'django.test.simple.run_tests'`` +Default: ``'django.test.simple.DjangoTestSuiteRunner'`` -The name of the method to use for starting the test suite. See +.. versionchanged:: 1.2 + Prior to 1.2, test runners were a function, not a class. + +The name of the class to use for starting the test suite. See :ref:`topics-testing`. .. _Testing Django Applications: ../testing/ |
