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
a73498d7
Commit
a73498d7
authored
Apr 09, 2014
by
Carlton Gibson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip new test for Django < 1.6
parent
645ef989
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
rest_framework/tests/test_relations.py
+3
-1
No files found.
rest_framework/tests/test_relations.py
View file @
a73498d7
...
...
@@ -2,8 +2,10 @@
General tests for relational fields.
"""
from
__future__
import
unicode_literals
from
django
import
get_version
from
django.db
import
models
from
django.test
import
TestCase
from
django.utils
import
unittest
from
rest_framework
import
serializers
from
rest_framework.tests.models
import
BlogPost
...
...
@@ -119,7 +121,7 @@ class RelatedFieldSourceTests(TestCase):
with
self
.
assertRaises
(
AttributeError
):
TestSerializer
(
data
=
{
'name'
:
'foo'
})
@unittest.skipIf
(
get_version
()
<
'1.6.0'
,
'Upstream behaviour changed in v1.6'
)
class
RelatedFieldChoicesTests
(
TestCase
):
"""
Tests for #1408 "Web browseable API doesn't have blank option on drop down list box"
...
...
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