Opened 16 years ago

Closed 16 years ago

#6985 closed (invalid)

Rename django.test.TestCase to django.test.testcases.TestCase ? (SVN version)

Reported by: r. Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In the documentation file: http://www.djangoproject.com/documentation/testing/

Secion: TestCase / DEFAULT TEST CLIENT

…you can just refer to self.client, like so:

from django.test import TestCase

should it be:

from django.test.testcases import TestCase

--
Django installation Updated to revision 7409.

Change History (1)

comment:1 by Russell Keith-Magee, 16 years ago

Resolution: invalid
Status: newclosed

from django.test import TestCase is a shortcut, and it works fine as far as I can tell.

Note: See TracTickets for help on using tickets.
Back to Top