Commit 035cb99b authored by Alex Gaynor's avatar Alex Gaynor
Browse files

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
parent c6e64aaa
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
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(), [])