Kaydet (Commit) bcba29fc authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Changed forms unit tests to reflect the fact that render() does not use the…

Changed forms unit tests to reflect the fact that render() does not use the to_python() value of data

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3946 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 88a2f53b
......@@ -389,12 +389,12 @@ u''
>>> print p['last_name']
<input type="text" name="last_name" value="Lennon" />
>>> print p['birthday']
<input type="text" name="birthday" value="1940-10-09" />
<input type="text" name="birthday" value="1940-10-9" />
>>> for boundfield in p:
... print boundfield
<input type="text" name="first_name" value="John" />
<input type="text" name="last_name" value="Lennon" />
<input type="text" name="birthday" value="1940-10-09" />
<input type="text" name="birthday" value="1940-10-9" />
>>> p = Person({'last_name': u'Lennon'})
>>> p.errors()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment