X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/5a890632b4f48afcd2e389ff1403e893e2ebacb1..8df2d3c3985857213effe95e92f86afb2f804290:/pagination/tests.py?ds=inline diff --git a/pagination/tests.py b/pagination/tests.py index 1d00f90..837e55c 100644 --- a/pagination/tests.py +++ b/pagination/tests.py @@ -19,6 +19,15 @@ >>> paginate({'paginator': p, 'page_obj': p.page(1)})['pages'] [1, 2, 3, 4, None, 8, 9, 10, 11] +# Testing orphans +>>> p = Paginator(range(5), 2, 1) +>>> paginate({'paginator': p, 'page_obj': p.page(1)})['pages'] +[1, 2] + +>>> p = Paginator(range(21), 2, 1) +>>> paginate({'paginator': p, 'page_obj': p.page(1)})['pages'] +[1, 2, 3, 4, None, 7, 8, 9, 10] + >>> t = Template("{% load pagination_tags %}{% autopaginate var 2 %}{% paginate %}") # WARNING: Please, please nobody read this portion of the code!