From e6ec07dc1f9070df4dab982aa4567def924bfe01 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sun, 23 May 2010 10:38:23 +0000 Subject: Fixed #13592 -- Make sure the SelectDateWidget works with dates before 1900 when localization is enabled. Thanks for the report and patch, magnus. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13301 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/forms/extra.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/regressiontests/forms') diff --git a/tests/regressiontests/forms/extra.py b/tests/regressiontests/forms/extra.py index 7547901d0f..57e8e91a60 100644 --- a/tests/regressiontests/forms/extra.py +++ b/tests/regressiontests/forms/extra.py @@ -435,6 +435,11 @@ USE_L10N tests +Years before 1900 work +>>> w = SelectDateWidget(years=('1899',)) +>>> w.value_from_datadict({'date_year': '1899', 'date_month': '8', 'date_day': '13'}, {}, 'date') +'13-08-1899' + >>> translation.deactivate() # MultiWidget and MultiValueField ############################################# -- cgit v1.3