Ticket #15595: 15595_TestCase_docs.diff

File 15595_TestCase_docs.diff, 1.1 KB (added by ShawnMilo, 13 years ago)

Changes at Russell's suggestion.

  • docs/topics/testing.txt

    diff --git docs/topics/testing.txt docs/topics/testing.txt
    index fb9f6e5..83cd4ed 100644
    two test frameworks that ship in the Python standard library. The two  
    3636frameworks are:
    3737
    3838    * **Unit tests** -- tests that are expressed as methods on a Python class
    39       that subclasses ``unittest.TestCase``. For example::
     39      that subclasses ``unittest.TestCase`` or Django's customized
     40      :class:`TestCase`. For example::
    4041
    4142          import unittest
    4243
    Converting a normal ``unittest.TestCase`` to a Django ``TestCase`` is easy:  
    10981099just change the base class of your test from ``unittest.TestCase`` to
    10991100``django.test.TestCase``. All of the standard Python unit test functionality
    11001101will continue to be available, but it will be augmented with some useful
    1101 additions.
     1102additions, including:
     1103
     1104    * Automatic loading of fixtures.
     1105
     1106    * Wraps each test in a transaction.
     1107
     1108    * Creates a TestClient instance.
     1109
     1110    * Django-specific assertions for testing for things
     1111      like redirection and form errors.
    11021112
    11031113.. class:: TransactionTestCase()
    11041114
Back to Top