diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
a
|
b
|
|
293 | 293 | ``inspectdb`` works with PostgreSQL, MySQL and SQLite. Foreign-key detection |
294 | 294 | only works in PostgreSQL and with certain types of MySQL tables. |
295 | 295 | |
| 296 | .. django-admin:: loaddata |
| 297 | |
296 | 298 | loaddata <fixture fixture ...> |
297 | 299 | ------------------------------ |
298 | 300 | |
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
a
|
b
|
|
944 | 944 | Fixtures with other names can always be installed manually using the |
945 | 945 | ``manage.py loaddata`` command. |
946 | 946 | |
947 | | Once you've created a fixture and placed it somewhere in your Django project, |
948 | | you can use it in your unit tests by specifying a ``fixtures`` class attribute |
949 | | on your ``django.test.TestCase`` subclass:: |
| 947 | Once you've created a fixture and placed it in an appropiate location (see the |
| 948 | :djadmin:`loaddata documentation<loaddata>` for more details) you can use it in |
| 949 | your unit tests by specifying a ``fixtures`` class attribute on your |
| 950 | ``django.test.TestCase`` subclass:: |
950 | 951 | |
951 | 952 | from django.test import TestCase |
952 | 953 | from myapp.models import Animal |