Commit a73498d7 by Carlton Gibson

Skip new test for Django < 1.6

parent 645ef989
...@@ -2,8 +2,10 @@ ...@@ -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): ...@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment