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
5a95baf2
Commit
5a95baf2
authored
Sep 22, 2014
by
Tom Christie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tests & tweaks for ChoiceField
parent
b5454dd0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
rest_framework/fields.py
+3
-1
tests/test_fields.py
+3
-1
No files found.
rest_framework/fields.py
View file @
5a95baf2
...
@@ -769,7 +769,9 @@ class MultipleChoiceField(ChoiceField):
...
@@ -769,7 +769,9 @@ class MultipleChoiceField(ChoiceField):
])
])
def
to_representation
(
self
,
value
):
def
to_representation
(
self
,
value
):
return
[
self
.
choice_strings_to_values
[
str
(
item
)]
for
item
in
value
]
return
set
([
self
.
choice_strings_to_values
[
str
(
item
)]
for
item
in
value
])
# File types...
# File types...
...
...
tests/test_fields.py
View file @
5a95baf2
...
@@ -577,7 +577,9 @@ class TestMultipleChoiceField(FieldValues):
...
@@ -577,7 +577,9 @@ class TestMultipleChoiceField(FieldValues):
'abc'
:
[
'Expected a list of items but got type `str`'
],
'abc'
:
[
'Expected a list of items but got type `str`'
],
(
'aircon'
,
'incorrect'
):
[
'`incorrect` is not a valid choice.'
]
(
'aircon'
,
'incorrect'
):
[
'`incorrect` is not a valid choice.'
]
}
}
outputs
=
{}
outputs
=
[
([
'aircon'
,
'manual'
],
set
([
'aircon'
,
'manual'
]))
]
field
=
fields
.
MultipleChoiceField
(
field
=
fields
.
MultipleChoiceField
(
choices
=
[
choices
=
[
(
'aircon'
,
'AirCon'
),
(
'aircon'
,
'AirCon'
),
...
...
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