summaryrefslogtreecommitdiff
path: root/tests/validation
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2014-01-20 10:45:21 +0800
committerRussell Keith-Magee <russell@keith-magee.com>2014-01-20 10:45:21 +0800
commitd818e0c9b2b88276cc499974f9eee893170bf0a8 (patch)
tree13ef631f7ba50bf81fa36f484abf925ba8172651 /tests/validation
parent6e7bd0b63bd01949ac4fd647f2597639bed0c3a2 (diff)
downloaddjango-d818e0c9b2b88276cc499974f9eee893170bf0a8.tar.gz
Fixed #16905 -- Added extensible checks (nee validation) framework
This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844.
Diffstat (limited to 'tests/validation')
-rw-r--r--tests/validation/test_error_messages.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/validation/test_error_messages.py b/tests/validation/test_error_messages.py
index aa01db6007..9b0bf701b1 100644
--- a/tests/validation/test_error_messages.py
+++ b/tests/validation/test_error_messages.py
@@ -5,7 +5,6 @@ from unittest import TestCase
from django.core.exceptions import ValidationError
from django.db import models
-from django.utils import six
class ValidationMessagesTest(TestCase):
@@ -19,10 +18,6 @@ class ValidationMessagesTest(TestCase):
f = models.AutoField(primary_key=True)
self._test_validation_messages(f, 'fõo',
["'fõo' value must be an integer."])
- # primary_key must be True. Refs #12467.
- with six.assertRaisesRegex(self, AssertionError,
- "AutoFields must have primary_key=True."):
- models.AutoField(primary_key=False)
def test_integer_field_raises_error_message(self):
f = models.IntegerField()