Django

Code

Changeset 6710

Show
Ignore:
Timestamp:
11/23/07 04:51:17 (1 year ago)
Author:
russellm
Message:

Corrected a docstring in django.test.TestCase? to match the actual behavior.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/test/testcases.py

    r6661 r6710  
    5252        """Performs any pre-test setup. This includes: 
    5353 
    54             * If the Test Case class has a 'fixtures' member, clearing the 
    55               database and installing the named fixtures at the start of each 
    56               test
     54            * Flushing the database. 
     55            * If the Test Case class has a 'fixtures' member, installing the  
     56              named fixtures
    5757            * Clearing the mail test outbox. 
    5858        """