Explorar el Código

Completed test coverage for django.core.paginator.

Marcelo Galigniana hace 2 años
padre
commit
2a2503c2c1
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      tests/pagination/tests.py

+ 5 - 0
tests/pagination/tests.py

@@ -320,6 +320,11 @@ class PaginationTests(SimpleTestCase):
             with self.subTest(page=page):
                 self.assertEqual(expected, list(next(page_iterator)))
 
+        self.assertEqual(
+            [str(page) for page in iter(paginator)],
+            ["<Page 1 of 2>", "<Page 2 of 2>"],
+        )
+
     def test_get_elided_page_range(self):
         # Paginator.validate_number() must be called:
         paginator = Paginator([1, 2, 3], 2)