Kaydet (Commit) a1721664 authored tarafından bee_keeper's avatar bee_keeper Kaydeden (comit) Tim Graham

Added class-based view example to RequestFactory example.

üst ab873e7a
...@@ -40,7 +40,7 @@ The following is a simple unit test using the request factory:: ...@@ -40,7 +40,7 @@ The following is a simple unit test using the request factory::
from django.contrib.auth.models import AnonymousUser, User from django.contrib.auth.models import AnonymousUser, User
from django.test import TestCase, RequestFactory from django.test import TestCase, RequestFactory
from .views import my_view from .views import MyView, my_view
class SimpleTest(TestCase): class SimpleTest(TestCase):
def setUp(self): def setUp(self):
...@@ -63,6 +63,8 @@ The following is a simple unit test using the request factory:: ...@@ -63,6 +63,8 @@ The following is a simple unit test using the request factory::
# Test my_view() as if it were deployed at /customer/details # Test my_view() as if it were deployed at /customer/details
response = my_view(request) response = my_view(request)
# Use this syntax for class-based views.
response = MyView.as_view()(request)
self.assertEqual(response.status_code, 200) self.assertEqual(response.status_code, 200)
.. _topics-testing-advanced-multidb: .. _topics-testing-advanced-multidb:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment