Commit d1dd71f1 authored by Tim Graham's avatar Tim Graham
Browse files

[1.7.x] Added an import to docs/topics/testing/advanced.txt example.

Backport of 32b67b3f from master
parent fcaf2e13
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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.