diff options
| author | david <dakrauth@gmail.com> | 2015-03-07 11:57:52 +0100 |
|---|---|---|
| committer | Erik Romijn <eromijn@solidlinks.nl> | 2015-03-07 12:59:58 +0100 |
| commit | 88c605e3e34cebd5485d286a17ac84c7b8b0faf1 (patch) | |
| tree | 8ccad05bfff014f851ffb504254c01842610757d /tests/admin_views | |
| parent | ec808e807ad711b993f199f6b4165ac6d0e1125b (diff) | |
Fixed #23993 -- Added form.media to the admin login template.
Diffstat (limited to 'tests/admin_views')
| -rw-r--r-- | tests/admin_views/forms.py | 3 | ||||
| -rw-r--r-- | tests/admin_views/tests.py | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/admin_views/forms.py b/tests/admin_views/forms.py index e8493df95b..06c99f4bc3 100644 --- a/tests/admin_views/forms.py +++ b/tests/admin_views/forms.py @@ -4,6 +4,9 @@ from django.contrib.admin.forms import AdminAuthenticationForm class CustomAdminAuthenticationForm(AdminAuthenticationForm): + class Media: + css = {'all': ('path/to/media.css',)} + def clean_username(self): username = self.cleaned_data.get('username') if username == 'customform': diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py index 3519f074db..391122ef07 100644 --- a/tests/admin_views/tests.py +++ b/tests/admin_views/tests.py @@ -1182,6 +1182,7 @@ class CustomModelAdminTest(AdminViewBasicTestCase): self.assertIsInstance(login, TemplateResponse) self.assertEqual(login.status_code, 200) self.assertContains(login, 'custom form error') + self.assertContains(login, 'path/to/media.css') def test_custom_admin_site_login_template(self): self.client.logout() |
