Ticket #11505: doc_patch.patch
File doc_patch.patch, 722 bytes (added by , 15 years ago) |
---|
-
docs/topics/testing.txt
883 883 MyISAM storage engine), ``TestCase`` falls back to initializing the database 884 884 by truncating tables and reloading initial data. 885 885 886 In addition to rolling back / flushing changes to the database, both 887 ``TestCase`` and ``TransactionTestCase`` also reset the cache. The cache 888 reset is called during pre-test setup, before fixture loading occurs. 886 889 890 887 891 .. note:: 888 892 The ``TestCase`` use of rollback to un-do the effects of the test code 889 893 may reveal previously-undetected errors in test code. For example,