mirror of
https://github.com/django/django.git
synced 2025-11-25 13:13:28 +00:00
Fixed #4316 -- Added docstring and tests for django.newforms.utils.flatatt().
Thanks, Gary Wilson. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
5ab9c3ac82
commit
534c0d8442
2 changed files with 17 additions and 3 deletions
|
|
@ -3515,6 +3515,15 @@ u'\u0160\u0110\u0106\u017d\u0107\u017e\u0161\u0111'
|
|||
u'1'
|
||||
>>> smart_unicode('foo')
|
||||
u'foo'
|
||||
|
||||
# flatatt tests
|
||||
>>> from django.newforms.util import flatatt
|
||||
>>> flatatt({'id': "header"})
|
||||
u' id="header"'
|
||||
>>> flatatt({'class': "news", 'title': "Read this"})
|
||||
u' class="news" title="Read this"'
|
||||
>>> flatatt({})
|
||||
u''
|
||||
"""
|
||||
|
||||
__test__ = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue