mirror of
https://github.com/django/django.git
synced 2025-04-26 10:14:36 +00:00
Fixed #26132 -- Discouraged use of TransactionTestCase.fixtures.
This commit is contained in:
parent
2d36c7d515
commit
b0b45f9a83
@ -1037,9 +1037,9 @@ Fixture loading
|
|||||||
.. attribute:: TransactionTestCase.fixtures
|
.. attribute:: TransactionTestCase.fixtures
|
||||||
|
|
||||||
A test case for a database-backed website isn't much use if there isn't any
|
A test case for a database-backed website isn't much use if there isn't any
|
||||||
data in the database. To make it easy to put test data into the database,
|
data in the database. Tests are more readable and it's more maintainable to
|
||||||
Django's custom ``TransactionTestCase`` class provides a way of loading
|
create objects using the ORM, for example in :meth:`TestCase.setUpTestData`,
|
||||||
**fixtures**.
|
however, you can also use fixtures.
|
||||||
|
|
||||||
A fixture is a collection of data that Django knows how to import into a
|
A fixture is a collection of data that Django knows how to import into a
|
||||||
database. For example, if your site has user accounts, you might set up a
|
database. For example, if your site has user accounts, you might set up a
|
||||||
|
Loading…
x
Reference in New Issue
Block a user