mirror of
https://github.com/django/django.git
synced 2025-10-22 16:22:43 +00:00
Fixed #13093 -- Updated some decorators and the decorator_from_middleware function to allow callable classes to be decorated. Thanks to Brian Neal for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12762 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
5c256ddeec
commit
615eab6b02
8 changed files with 35 additions and 13 deletions
|
@ -11,3 +11,9 @@ class DecoratorFromMiddlewareTests(TestCase):
|
|||
Test a middleware that implements process_view.
|
||||
"""
|
||||
self.client.get('/utils/xview/')
|
||||
|
||||
def test_callable_process_view_middleware(self):
|
||||
"""
|
||||
Test a middleware that implements process_view, operating on a callable class.
|
||||
"""
|
||||
self.client.get('/utils/class_xview/')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue