summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-12-08 19:47:53 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-12-08 19:47:53 +0100
commitd5ed81c7951578c8cf0eb6fefd09db632455edd0 (patch)
tree73507f6604bef65645b3c796bce37b4c6c140efd /docs
parentb21e0753ae520a8adce04d9e8b0db065d76c3e98 (diff)
downloaddjango-d5ed81c7951578c8cf0eb6fefd09db632455edd0.tar.gz
Fixed #19389 -- Docs on the location of contrib apps tests.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/contributing/writing-code/unit-tests.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt
index 71666a169e..4e702ff83e 100644
--- a/docs/internals/contributing/writing-code/unit-tests.txt
+++ b/docs/internals/contributing/writing-code/unit-tests.txt
@@ -9,7 +9,8 @@ The tests cover:
* Models and the database API (``tests/modeltests``),
* Everything else in core Django code (``tests/regressiontests``),
-* :ref:`contrib-apps` (``django/contrib/<app>/tests``).
+* :ref:`contrib-apps` (``django/contrib/<app>/tests`` or
+ ``tests/regressiontests/<app>_...``).
We appreciate any and all contributions to the test suite!