mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
d5a45d79fe
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16975 bcc190cf-cafb-0310-a4f2-bffc1f526a37
16 lines
512 B
Python
16 lines
512 B
Python
from __future__ import absolute_import
|
|
|
|
from . import ValidationTestCase
|
|
from .models import CustomMessagesModel
|
|
|
|
|
|
class CustomMessagesTest(ValidationTestCase):
|
|
def test_custom_simple_validator_message(self):
|
|
cmm = CustomMessagesModel(number=12)
|
|
self.assertFieldFailsValidationWithMessage(cmm.full_clean, 'number', ['AAARGH'])
|
|
|
|
def test_custom_null_message(self):
|
|
cmm = CustomMessagesModel()
|
|
self.assertFieldFailsValidationWithMessage(cmm.full_clean, 'number', ['NULL'])
|
|
|