Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
53b100d0
Commit
53b100d0
authored
May 03, 2017
by
Ryan P Kilby
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add failing test for filter backend mro
parent
67f38239
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletions
+16
-1
requirements/requirements-optionals.txt
+1
-1
tests/test_filters.py
+15
-0
No files found.
requirements/requirements-optionals.txt
View file @
53b100d0
# Optional packages which may be used with REST framework.
markdown==2.6.4
django-guardian==1.4.8
django-filter==1.0.
0
django-filter==1.0.
2
coreapi==2.2.4
coreschema==0.0.4
tests/test_filters.py
View file @
53b100d0
...
...
@@ -202,6 +202,21 @@ class IntegrationTestFiltering(CommonFilteringTestCase):
assert
len
(
w
)
==
0
@unittest.skipUnless
(
django_filters
,
'django-filter not installed'
)
def
test_backend_mro
(
self
):
class
CustomBackend
(
filters
.
DjangoFilterBackend
):
def
filter_queryset
(
self
,
request
,
queryset
,
view
):
assert
False
,
"custom filter_queryset should run"
class
DFFilterFieldsRootView
(
FilterFieldsRootView
):
filter_backends
=
(
CustomBackend
,)
view
=
DFFilterFieldsRootView
.
as_view
()
request
=
factory
.
get
(
'/'
)
with
pytest
.
raises
(
AssertionError
,
message
=
"custom filter_queryset should run"
):
view
(
request
)
.
render
()
@unittest.skipUnless
(
django_filters
,
'django-filter not installed'
)
def
test_get_filtered_fields_root_view
(
self
):
"""
GET requests to paginated ListCreateAPIView should return paginated results.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment