mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-09 08:00:52 +03:00
Skip new test for Django < 1.6
This commit is contained in:
parent
645ef9895f
commit
a73498d797
|
@ -2,8 +2,10 @@
|
||||||
General tests for relational fields.
|
General tests for relational fields.
|
||||||
"""
|
"""
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
from django import get_version
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
|
from django.utils import unittest
|
||||||
from rest_framework import serializers
|
from rest_framework import serializers
|
||||||
from rest_framework.tests.models import BlogPost
|
from rest_framework.tests.models import BlogPost
|
||||||
|
|
||||||
|
@ -119,7 +121,7 @@ class RelatedFieldSourceTests(TestCase):
|
||||||
with self.assertRaises(AttributeError):
|
with self.assertRaises(AttributeError):
|
||||||
TestSerializer(data={'name': 'foo'})
|
TestSerializer(data={'name': 'foo'})
|
||||||
|
|
||||||
|
@unittest.skipIf(get_version() < '1.6.0', 'Upstream behaviour changed in v1.6')
|
||||||
class RelatedFieldChoicesTests(TestCase):
|
class RelatedFieldChoicesTests(TestCase):
|
||||||
"""
|
"""
|
||||||
Tests for #1408 "Web browseable API doesn't have blank option on drop down list box"
|
Tests for #1408 "Web browseable API doesn't have blank option on drop down list box"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user