mirror of
https://github.com/django/django.git
synced 2024-11-28 10:48:32 +01:00
471596fc1a
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12098 bcc190cf-cafb-0310-a4f2-bffc1f526a37
14 lines
497 B
Python
14 lines
497 B
Python
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'])
|
|
|