mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Merged soc2009/model-validation to trunk. Thanks, Honza!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12098 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
4e89105d64
commit
471596fc1a
63 changed files with 1550 additions and 639 deletions
13
tests/modeltests/validation/test_custom_messages.py
Normal file
13
tests/modeltests/validation/test_custom_messages.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
from modeltests.validation import ValidationTestCase
|
||||
from models import CustomMessagesModel
|
||||
|
||||
|
||||
class CustomMessagesTest(ValidationTestCase):
|
||||
def test_custom_simple_validator_message(self):
|
||||
cmm = CustomMessagesModel(number=12)
|
||||
self.assertFieldFailsValidationWithMessage(cmm.full_validate, 'number', ['AAARGH'])
|
||||
|
||||
def test_custom_null_message(self):
|
||||
cmm = CustomMessagesModel()
|
||||
self.assertFieldFailsValidationWithMessage(cmm.full_validate, 'number', ['NULL'])
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue