1
0
mirror of https://github.com/django/django.git synced 2024-12-31 21:46:05 +00:00

Added an import to docs/topics/testing/advanced.txt example.

This commit is contained in:
Tim Graham 2015-02-17 13:53:20 -05:00
parent bad6280c4e
commit 32b67b3fd1

View File

@ -40,6 +40,8 @@ The following is a simple unit test using the request factory::
from django.contrib.auth.models import AnonymousUser, User
from django.test import TestCase, RequestFactory
from .views import my_view
class SimpleTest(TestCase):
def setUp(self):
# Every test needs access to the request factory.