Closed
Description
After lots of head scratching we just determined that our test was failing because it has cursor pagination enabled, does this package support it or what would be needed to make it work?
class FooViewSet(viewsets.ModelViewSet):
serializer_class = serializers.FooSerializer
pagination_class = FooCursorPagination
def get_queryset(self):
qs = models.Foo.objects.all()
return qs