From f55f2b9d74bf59d1b3ace5df5f498998eb62cb28 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Wed, 8 Apr 2009 20:25:56 +0000 Subject: Fixed #10059: `ModelAdmin.formfield_for_dbfield` now handles custom `Field` subclasses. Thanks, Alex Gaynor. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10454 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/admin_widgets/tests.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tests/regressiontests/admin_widgets/tests.py') diff --git a/tests/regressiontests/admin_widgets/tests.py b/tests/regressiontests/admin_widgets/tests.py index c2b040368d..55088ca1fe 100644 --- a/tests/regressiontests/admin_widgets/tests.py +++ b/tests/regressiontests/admin_widgets/tests.py @@ -98,6 +98,8 @@ class AdminFormfieldForDBFieldTests(TestCase): self.assertFormfield(models.Member, 'gender', widgets.AdminRadioSelect, radio_fields={'gender':admin.VERTICAL}) + def testInheritance(self): + self.assertFormfield(models.Album, 'backside_art', widgets.AdminFileWidget) class AdminFormfieldForDBFieldWithRequestTests(DjangoTestCase): fixtures = ["admin-widgets-users.xml"] @@ -113,13 +115,13 @@ class AdminFormfieldForDBFieldWithRequestTests(DjangoTestCase): class AdminForeignKeyWidgetChangeList(DjangoTestCase): fixtures = ["admin-widgets-users.xml"] - + def setUp(self): self.client.login(username="super", password="secret") - + def tearDown(self): self.client.logout() - + def test_changelist_foreignkey(self): response = self.client.get('/widget_admin/admin_widgets/car/') self.failUnless('/widget_admin/auth/user/add/' in response.content) -- cgit v1.3