X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/8f76903ab93a01d3b636d8977025c14cfa6f6131..66ce4cd0b0c8dab29de4dc992e81bcb2fb030e5a:/pagination/tests.py diff --git a/pagination/tests.py b/pagination/tests.py index 1579166..a55ef49 100644 --- a/pagination/tests.py +++ b/pagination/tests.py @@ -30,29 +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