Skip to content

Commit

Permalink
Made an AutoField test more robust.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16992 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jphalip committed Oct 16, 2011
1 parent 93a5814 commit d3cd9c0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/modeltests/validation/models.py
Expand Up @@ -93,11 +93,13 @@ class GenericIPAddrUnpackUniqueTest(models.Model):
generic_v4unpack_ip = models.GenericIPAddressField(blank=True, unique=True, unpack_ipv4=True)


# A model can't have multiple AutoFields
# Refs #12467.
assertion_error = None
try:
# A model can't have multiple AutoFields
# Refs #12467.
class MultipleAutoFields(models.Model):
auto1 = models.AutoField(primary_key=True)
auto2 = models.AutoField(primary_key=True)
except AssertionError, e:
assert e.message == u"A model can't have more than one AutoField."
except AssertionError, assertion_error:
pass # Fail silently
assert assertion_error.message == u"A model can't have more than one AutoField."

0 comments on commit d3cd9c0

Please sign in to comment.