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
5a662dd6
Commit
5a662dd6
authored
Jan 31, 2014
by
Xavier Ordoquy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moving models back to test_serializer.
parent
ef742f2d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
21 deletions
+21
-21
rest_framework/tests/models.py
+0
-20
rest_framework/tests/test_serializer.py
+21
-1
No files found.
rest_framework/tests/models.py
View file @
5a662dd6
...
...
@@ -170,26 +170,6 @@ class BasicModelSerializer(serializers.ModelSerializer):
model
=
BasicModel
# Models to test the serializers
class
AMOAFModel
(
RESTFrameworkModel
):
char_field
=
models
.
CharField
(
max_length
=
1024
,
blank
=
True
)
comma_separated_integer_field
=
models
.
CommaSeparatedIntegerField
(
max_length
=
1024
,
blank
=
True
)
decimal_field
=
models
.
DecimalField
(
max_digits
=
64
,
decimal_places
=
32
,
blank
=
True
)
email_field
=
models
.
EmailField
(
max_length
=
1024
,
blank
=
True
)
file_field
=
models
.
FileField
(
upload_to
=
'test'
,
max_length
=
1024
,
blank
=
True
)
image_field
=
models
.
ImageField
(
upload_to
=
'test'
,
max_length
=
1024
,
blank
=
True
)
slug_field
=
models
.
SlugField
(
max_length
=
1024
,
blank
=
True
)
url_field
=
models
.
URLField
(
max_length
=
1024
,
blank
=
True
)
class
DVOAFModel
(
RESTFrameworkModel
):
positive_integer_field
=
models
.
PositiveIntegerField
(
blank
=
True
)
positive_small_integer_field
=
models
.
PositiveSmallIntegerField
(
blank
=
True
)
email_field
=
models
.
EmailField
(
blank
=
True
)
file_field
=
models
.
FileField
(
upload_to
=
'test'
,
blank
=
True
)
image_field
=
models
.
ImageField
(
upload_to
=
'test'
,
blank
=
True
)
slug_field
=
models
.
SlugField
(
blank
=
True
)
url_field
=
models
.
URLField
(
blank
=
True
)
# Models to test filters
class
FilterableItem
(
models
.
Model
):
text
=
models
.
CharField
(
max_length
=
100
)
...
...
rest_framework/tests/test_serializer.py
View file @
5a662dd6
...
...
@@ -8,12 +8,32 @@ from django.utils.translation import ugettext_lazy as _
from
rest_framework
import
serializers
,
fields
,
relations
from
rest_framework.tests.models
import
(
HasPositiveIntegerAsChoice
,
Album
,
ActionItem
,
Anchor
,
BasicModel
,
BlankFieldModel
,
BlogPost
,
BlogPostComment
,
Book
,
CallableDefaultValueModel
,
DefaultValueModel
,
ManyToManyModel
,
Person
,
ReadOnlyManyToManyModel
,
Photo
,
RESTFrameworkModel
,
AMOAFModel
,
DVOAFModel
)
ManyToManyModel
,
Person
,
ReadOnlyManyToManyModel
,
Photo
,
RESTFrameworkModel
)
from
rest_framework.tests.models
import
BasicModelSerializer
import
datetime
import
pickle
class
AMOAFModel
(
RESTFrameworkModel
):
char_field
=
models
.
CharField
(
max_length
=
1024
,
blank
=
True
)
comma_separated_integer_field
=
models
.
CommaSeparatedIntegerField
(
max_length
=
1024
,
blank
=
True
)
decimal_field
=
models
.
DecimalField
(
max_digits
=
64
,
decimal_places
=
32
,
blank
=
True
)
email_field
=
models
.
EmailField
(
max_length
=
1024
,
blank
=
True
)
file_field
=
models
.
FileField
(
upload_to
=
'test'
,
max_length
=
1024
,
blank
=
True
)
image_field
=
models
.
ImageField
(
upload_to
=
'test'
,
max_length
=
1024
,
blank
=
True
)
slug_field
=
models
.
SlugField
(
max_length
=
1024
,
blank
=
True
)
url_field
=
models
.
URLField
(
max_length
=
1024
,
blank
=
True
)
class
DVOAFModel
(
RESTFrameworkModel
):
positive_integer_field
=
models
.
PositiveIntegerField
(
blank
=
True
)
positive_small_integer_field
=
models
.
PositiveSmallIntegerField
(
blank
=
True
)
email_field
=
models
.
EmailField
(
blank
=
True
)
file_field
=
models
.
FileField
(
upload_to
=
'test'
,
blank
=
True
)
image_field
=
models
.
ImageField
(
upload_to
=
'test'
,
blank
=
True
)
slug_field
=
models
.
SlugField
(
blank
=
True
)
url_field
=
models
.
URLField
(
blank
=
True
)
class
SubComment
(
object
):
def
__init__
(
self
,
sub_comment
):
self
.
sub_comment
=
sub_comment
...
...
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