Skip new test for Django < 1.6

This commit is contained in:
Carlton Gibson 2014-04-09 19:54:13 +02:00
parent 645ef9895f
commit a73498d797

View File

@ -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"