1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.8.x] Moved contrib.messages tests out of contrib.

Backport of b3cd9e0d07 from master
This commit is contained in:
Tim Graham
2015-02-10 08:30:35 -05:00
parent 10fdd2fc1d
commit bbe7964185
9 changed files with 12 additions and 21 deletions

View File

@@ -0,0 +1,19 @@
import unittest
from django import http
from django.contrib.messages.middleware import MessageMiddleware
class MiddlewareTest(unittest.TestCase):
def setUp(self):
self.middleware = MessageMiddleware()
def test_response_without_messages(self):
"""
Makes sure that the response middleware is tolerant of messages not
existing on request.
"""
request = http.HttpRequest()
response = http.HttpResponse()
self.middleware.process_response(request, response)