X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/3ff8109af2292cce90bcd7cd8745e30598a1d5fc..8476cce458b0d0f0ceb7bc2ba69b692de5c0067c:/pagination/tests.py diff --git a/pagination/tests.py b/pagination/tests.py index 647bbfd..a55ef49 100644 --- a/pagination/tests.py +++ b/pagination/tests.py @@ -30,32 +30,101 @@ >>> t = Template("{% load pagination_tags %}{% autopaginate var 2 %}{% paginate %}") -# WARNING: Please, please nobody read this portion of the code! ->>> class GetProxy(object): -... def __iter__(self): yield self.__dict__.__iter__ -... def copy(self): return self -... def urlencode(self): return u'' -... def keys(self): return [] ->>> class RequestProxy(object): +>>> from django.http import HttpRequest as DjangoHttpRequest +>>> class HttpRequest(DjangoHttpRequest): ... page = 1 -... GET = GetProxy() ->>> -# ENDWARNING ->>> t.render(Context({'var': range(21), 'request': RequestProxy()})) +>>> t.render(Context({'var': range(21), 'request': HttpRequest()})) u'\\n\\n