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
a7072eb7
Commit
a7072eb7
authored
Jan 09, 2014
by
Xavier Ordoquy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test case for #1129
parent
593cf23a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
rest_framework/tests/test_relations.py
+20
-0
No files found.
rest_framework/tests/test_relations.py
View file @
a7072eb7
...
...
@@ -98,3 +98,23 @@ class RelatedFieldSourceTests(TestCase):
obj
=
ClassWithQuerysetMethod
()
value
=
field
.
field_to_native
(
obj
,
'field_name'
)
self
.
assertEqual
(
value
,
[
'BlogPost object'
])
# Regression for #1129
def
test_exception_for_incorect_fk
(
self
):
"""
Check that the exception message are correct if the source field
doesn't exist.
"""
from
rest_framework.tests.models
import
ManyToManySource
class
Meta
:
model
=
ManyToManySource
attrs
=
{
'name'
:
serializers
.
SlugRelatedField
(
slug_field
=
'name'
,
source
=
'banzai'
),
'Meta'
:
Meta
,
}
TestSerializer
=
type
(
str
(
'TestSerializer'
),
(
serializers
.
ModelSerializer
,),
attrs
)
with
self
.
assertRaises
(
AttributeError
):
TestSerializer
(
data
=
{
'name'
:
'foo'
})
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