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
de08f28a
Commit
de08f28a
authored
Oct 13, 2016
by
Tom Christie
Committed by
GitHub
Oct 13, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test one to one with inheritance (#4575)
parent
8d0a91b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
tests/test_one_to_one_with_inheritance.py
+46
-0
No files found.
tests/test_one_to_one_with_inheritance.py
0 → 100644
View file @
de08f28a
from
__future__
import
unicode_literals
from
django.db
import
models
from
django.test
import
TestCase
from
rest_framework
import
serializers
from
tests.models
import
RESTFrameworkModel
# Models
from
tests.test_multitable_inheritance
import
ChildModel
# Regression test for #4290
class
ChildAssociatedModel
(
RESTFrameworkModel
):
child_model
=
models
.
OneToOneField
(
ChildModel
)
child_name
=
models
.
CharField
(
max_length
=
100
)
# Serializers
class
DerivedModelSerializer
(
serializers
.
ModelSerializer
):
class
Meta
:
model
=
ChildModel
fields
=
[
'id'
,
'name1'
,
'name2'
,
'childassociatedmodel'
]
class
ChildAssociatedModelSerializer
(
serializers
.
ModelSerializer
):
class
Meta
:
model
=
ChildAssociatedModel
fields
=
[
'id'
,
'child_name'
]
# Tests
class
InheritedModelSerializationTests
(
TestCase
):
def
test_multitable_inherited_model_fields_as_expected
(
self
):
"""
Assert that the parent pointer field is not included in the fields
serialized fields
"""
child
=
ChildModel
(
name1
=
'parent name'
,
name2
=
'child name'
)
serializer
=
DerivedModelSerializer
(
child
)
self
.
assertEqual
(
set
(
serializer
.
data
.
keys
()),
set
([
'name1'
,
'name2'
,
'id'
,
'childassociatedmodel'
]))
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