diff options
| author | Michael Manfre <mmanfre@gmail.com> | 2014-01-08 09:53:40 -0500 |
|---|---|---|
| committer | Michael Manfre <mmanfre@gmail.com> | 2014-01-08 09:53:40 -0500 |
| commit | 8845ab62f553f29561decdbabd6eb0ea96c3c1d6 (patch) | |
| tree | 4b4e5fd58d56013e7c069436c5bddf25a834e3bb | |
| parent | f343f5e5389738cf06ddeef5ca961508f2f8c881 (diff) | |
Fixed #21745 - Feature check UniqueTest.test_unique_null
| -rw-r--r-- | tests/model_forms/tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py index bf7b3d296a..c5e16a2c14 100644 --- a/tests/model_forms/tests.py +++ b/tests/model_forms/tests.py @@ -14,7 +14,7 @@ from django.db import connection from django.db.models.query import EmptyQuerySet from django.forms.models import model_to_dict from django.utils._os import upath -from django.test import TestCase +from django.test import TestCase, skipUnlessDBFeature from django.utils import six from .models import (Article, ArticleStatus, BetterWriter, BigInt, Book, @@ -637,6 +637,7 @@ class UniqueTest(TestCase): self.assertEqual(len(form.errors), 1) self.assertEqual(form.errors['__all__'], ['Price with this Price and Quantity already exists.']) + @skipUnlessDBFeature('ignores_nulls_in_unique_constraints') def test_unique_null(self): title = 'I May Be Wrong But I Doubt It' form = BookForm({'title': title, 'author': self.writer.pk}) |
