summaryrefslogtreecommitdiff
path: root/tests/pagination
diff options
context:
space:
mode:
authorMoayad Mardini <moayad.m@gmail.com>2014-07-25 11:04:58 +0300
committerMoayad Mardini <moayad.m@gmail.com>2014-07-25 11:04:58 +0300
commit6508db2ff9fc5be95fec903b3fa7ab8204fe316a (patch)
treecc087a9e840e101ef03a5f80cf5aea0638ec2a00 /tests/pagination
parentbb395a15ba16cc3ae223265afb69ec95f0f78855 (diff)
downloaddjango-6508db2ff9fc5be95fec903b3fa7ab8204fe316a.tar.gz
Fixed #23088 -- Used `six` `range` type in `Paginator.page_range`.
Diffstat (limited to 'tests/pagination')
-rw-r--r--tests/pagination/tests.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/pagination/tests.py b/tests/pagination/tests.py
index c2ad54c5ad..3ff1306045 100644
--- a/tests/pagination/tests.py
+++ b/tests/pagination/tests.py
@@ -232,6 +232,13 @@ class PaginationTests(unittest.TestCase):
self.assertEqual(page2.previous_page_number(), 1)
self.assertIsNone(page2.next_page_number())
+ def test_page_range_type(self):
+ """
+ Ticket #23088: Paginator.page_range is of inconsistent type in Py2/Py3
+ """
+ paginator = Paginator([1, 2, 3], 2)
+ self.assertEqual(type(paginator.page_range), six.moves.range)
+
class ModelPaginationTests(TestCase):
"""