summaryrefslogtreecommitdiff
path: root/tests/regressiontests/forms/validators.py
blob: ed8e8fbd9a7067ddb8d0b563f4ae6c2f276de643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from unittest import TestCase

from django import forms
from django.core import validators
from django.core.exceptions import ValidationError


class TestFieldWithValidators(TestCase):
    def test_all_errors_get_reported(self):
        field = forms.CharField(
            validators=[validators.validate_integer, validators.validate_email]
        )
        self.assertRaises(ValidationError, field.clean, 'not int nor mail')
        try:
            field.clean('not int nor mail')
        except ValidationError, e:
            self.assertEqual(2, len(e.messages))