From 4c34343e178d9c46e7f037ecd34463905f69b9cb Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 14 May 2007 18:39:03 +0000 Subject: [PATCH] unicode: Added in a test that I want to work later (once some i18n problems are worked out). git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5238 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/forms/regressions.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/regressiontests/forms/regressions.py b/tests/regressiontests/forms/regressions.py index caa0f68741..8cf699da33 100644 --- a/tests/regressiontests/forms/regressions.py +++ b/tests/regressiontests/forms/regressions.py @@ -23,10 +23,16 @@ There were some problems with form translations in #3600 >>> print f.as_p()

+Translations are done at rendering time, so multi-lingual apps can define forms +early and still send back the right translation. + # XFAIL # >>> activate('de') # >>> print f.as_p() #

+# >>> activate('pl') +# >>> f.as_p() +# u'

' # >>> deactivate() Unicode decoding problems...