summaryrefslogtreecommitdiff
path: root/docs/topics/testing.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/testing.txt')
-rw-r--r--docs/topics/testing.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 2de12390ad..5bda3d67c1 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -944,9 +944,10 @@ See the :djadmin:`dumpdata documentation<dumpdata>` for more details.
Fixtures with other names can always be installed manually using the
``manage.py loaddata`` command.
-Once you've created a fixture and placed it somewhere in your Django project,
-you can use it in your unit tests by specifying a ``fixtures`` class attribute
-on your ``django.test.TestCase`` subclass::
+Once you've created a fixture and placed it in a ``fixtures`` directory in one
+of your :setting:`INSTALLED_APPS`, you can use it in your unit tests by
+specifying a ``fixtures`` class attribute on your ``django.test.TestCase``
+subclass::
from django.test import TestCase
from myapp.models import Animal