aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests/pagination.py
AgeCommit message (Collapse)Author
2013-05-17Fix PendingDeprecation warnings in testsTom Christie
2013-05-10Move models into test modules, out of models moduleTom Christie
2013-03-28Removed pagination regression special case for Django<1.4. Having ↵Kevin Stone
DjangoFilterBackend return an actual query set fixes this issue. Signed-off-by: Kevin Stone <kevinastone@gmail.com>
2013-03-21Default date/time fields now return python date/time objects again by defaultTom Christie
2013-03-13Use django-filter 0.6a1 and add database query count tests for paginated, ↵Tom Christie
filtered lists.
2013-03-13Fix duplicated database queries for paginated lists.Tom Christie
Closes #713.
2013-03-01Add drf settings + output format + testcasesStephan Groß
2013-02-27`assertEquals` -> `assertEqual`Tom Christie
2013-02-04Cleanup importsTom Christie
Mostly adding `from __future__ import unicode_literals` everywhere.
2013-01-26Test for custom pagination serializers. Also refs #604.Tom Christie
2013-01-24Test for #552.Tom Christie
2013-01-07Clean up test slightly. Refs #552Tom Christie
2012-12-14Merge branch 'master' of https://github.com/sunscrapers/django-rest-frameworkTom Christie
2012-12-14Ensure context is passed to dynamically added fields. Fixes #476.Tom Christie
2012-12-14Test to verify that context is passed onSimon Pantzare
The paginator and its object serializer should share the same context.
2012-12-13context to custom field in paginationSzymon Teżewski
2012-11-16Polishing to page size query parameters & more docsTom Christie
2012-11-15added page_size_kwarg testsStephan Groß
2012-11-08Make default FILTER_BACKEND = NoneTom Christie
2012-11-07Make filtering optional, and pluggable.Tom Christie
2012-11-06Merge branch 'master' into restframework2-filterBen Konrath
2012-11-05Swap position of `instance` and `data` keyword arguments.Tom Christie
2012-10-11Use Decimal (properly) everywhere.Ben Konrath
2012-10-11Explicitly use Decimal for creating filter test data.Ben Konrath
This fixes a Travis build failures on python 2.6: https://travis-ci.org/#!/tomchristie/django-rest-framework/builds/2746628
2012-10-11Fix small PEP8 problem.Ben Konrath
2012-10-11First attempt at adding filter support.Ben Konrath
The filter support uses django-filter to work its magic.
2012-10-03Rename generic viewsTom Christie
2012-10-01Expand pagination support, add docsTom Christie
2012-09-30Pagination supportTom Christie