Changeset 7258 for django/trunk/tests/modeltests/manipulators
- Timestamp:
- 03/17/08 09:05:43 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/modeltests/manipulators/models.py
r5876 r7258 1 # coding: utf-8 1 2 """ 2 3 27. Default manipulators … … 22 23 return self.name 23 24 24 __test__ = {'API_TESTS': """25 __test__ = {'API_TESTS':u""" 25 26 >>> from django.utils.datastructures import MultiValueDict 26 27 … … 89 90 >>> a2.release_date 90 91 datetime.date(2005, 2, 13) 92 93 # Test isValidFloat Unicode coercion 94 >>> from django.core.validators import isValidFloat, ValidationError 95 >>> try: isValidFloat(u"รค", None) 96 ... except ValidationError: pass 91 97 """}
