summaryrefslogtreecommitdiff
path: root/tests/pagination
Commit message (Expand)AuthorAgeFilesLines
* Fixed #27505 -- Allowed customizing Paginator's error messages.Marcelo Galigniana2023-04-121-0/+28
* Completed test coverage for django.core.paginator.Marcelo Galigniana2022-10-131-0/+5
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-2/+3
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-073-42/+69
* Fixed #31235 -- Made assertQuerysetEqual() compare querysets directly.Hasan Ramezani2020-11-061-22/+9
* Fixed #25513 -- Extracted admin pagination to Paginator.get_elided_page_range().Nick Pope2020-08-061-0/+121
* Fixed #14218 -- Added Paginator.__iter__().Tanner Stirrat2019-10-021-0/+7
* Fixed false positive tests of Paginator.count property.Maxim Kurnikov2019-09-251-2/+2
* Refs #29703 -- Removed QuerySetPaginator alias per deprecation timeline.Mariusz Felisiak2019-09-101-8/+1
* Improved error message when index in __getitem__() is invalid.Jon Dufresne2019-07-231-1/+2
* Switched setUp() to setUpTestData() where possible in Django's tests.Simon Charette2018-11-271-1/+2
* Fixed #29703 -- Deprecated QuerySetPaginator alias.Nick Pope2018-08-271-1/+8
* Fixed #29244 -- Prevented Paginator.count() from silencing TypeError and Attr...Josh Schneier2018-08-071-3/+18
* Fixed typos in comments and docs.luz.paz2018-08-011-1/+1
* Fixed #28917 -- Prevented Paginator's unordered warning on EmptyQuerySet.Josh Schneier2018-07-161-0/+6
* Fixed #29363 -- Added SimpleTestCase.assertWarnsMessage().Morgan Aubert2018-05-091-17/+9
* Fixed #29389 -- Made Paginator reject non-integer page numbers of type float.Nicolas Noé2018-05-091-0/+2
* Refs #29389 -- Added Paginator test for float page number.Nicolas Noé2018-05-091-0/+6
* Fixed #28032 -- Added Paginator.get_page().Sami J. Lehtinen2017-09-061-0/+32
* Removed unnecessary empty parentheses in class definitions.Jon Dufresne2017-06-261-1/+1
* Fixed #28284 -- Prevented Paginator's unordered object list warning from eval...orf2017-06-131-4/+18
* Fixed #28109 -- Corrected the stack level of unordered queryset pagination wa...Simon Charette2017-04-221-4/+13
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-2/+2
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-2/+2
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-2/+2
* Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz2017-01-181-2/+0
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-5/+4
* Fixed #26290 -- Warned that paginating an unordered QuerySet may result in in...Emad Mokhtar2016-06-081-9/+17
* Fixed E128 flake8 warnings in tests/.Tim Graham2016-04-081-8/+7
* Refs #26022 -- Used context manager version of assertRaises in tests.Hasan2016-01-291-9/+18
* Fixed #23190 -- Made Paginator.page_range an iteratorRigel Di Scala2015-07-031-0/+6
* Sorted imports with isort; refs #23860.Tim Graham2015-02-062-5/+6
* Fixed #23620 -- Used more specific assertions in the Django test suite.Berker Peksag2014-11-031-2/+2
* Revert "Fixed #23088 -- Used `six` `range` type in `Paginator.page_range`."Florian Apolloner2014-08-031-7/+0
* Fixed #23088 -- Used `six` `range` type in `Paginator.page_range`.Moayad Mardini2014-07-251-0/+7
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-211-11/+11
* Fixed #21287 -- Fixed E123 pep8 warningsAlasdair Nicol2013-10-181-3/+3
* Removed most of absolute_import importsClaude Paroz2013-07-291-1/+1
* Stopped using django.utils.unittest in the test suite.Aymeric Augustin2013-07-011-1/+1
* Fixed #19938 -- Consumed iterator only once in paginator's PageAndrew Jesaitis2013-05-251-0/+3
* Merged regressiontests and modeltests into the test root.Florian Apolloner2013-02-264-0/+338