Make the requests test use unittest2, rather than the system unittest.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14487 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Alex Gaynor 2010-11-07 15:41:17 +00:00
parent c6e64aaa66
commit 035cb99b47
1 changed files with 4 additions and 5 deletions

View File

@ -1,15 +1,14 @@
from datetime import datetime, timedelta
import time
from datetime import datetime, timedelta
from StringIO import StringIO
import unittest
from django.http import HttpRequest, HttpResponse, parse_cookie
from django.core.handlers.wsgi import WSGIRequest, LimitedStream
from django.core.handlers.modpython import ModPythonRequest
from django.core.handlers.wsgi import WSGIRequest, LimitedStream
from django.http import HttpRequest, HttpResponse, parse_cookie
from django.utils import unittest
from django.utils.http import cookie_date
class RequestsTests(unittest.TestCase):
def test_httprequest(self):
request = HttpRequest()
self.assertEqual(request.GET.keys(), [])