diff options
| author | kakulukia <andy@freilandkiwis.de> | 2017-06-05 22:17:10 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-06-06 15:57:08 -0400 |
| commit | 992f143bad4143da7e43e21c41dfdab79ddd5070 (patch) | |
| tree | 9554069c1c6eb939478c901b30755eb318f3c90f /tests/admin_widgets/tests.py | |
| parent | 6ae60295d71b29e55d0498551c0dd6ee07cee1c4 (diff) | |
[1.11.x] Fixed #28278 -- Fixed invalid HTML for a required AdminFileWidget.
Backport of 525dc283a68c0d47f5eb2192cc4a20111d561ae0 from master
Diffstat (limited to 'tests/admin_widgets/tests.py')
| -rw-r--r-- | tests/admin_widgets/tests.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/admin_widgets/tests.py b/tests/admin_widgets/tests.py index f9c6d6a614..2e2bdb0b52 100644 --- a/tests/admin_widgets/tests.py +++ b/tests/admin_widgets/tests.py @@ -434,6 +434,18 @@ class AdminFileWidgetTests(TestDataMixin, TestCase): '<input type="file" name="test" />', ) + def test_render_required(self): + widget = widgets.AdminFileWidget() + widget.is_required = True + self.assertHTMLEqual( + widget.render('test', self.album.cover_art), + '<p class="file-upload">Currently: <a href="%(STORAGE_URL)salbums/' + r'hybrid_theory.jpg">albums\hybrid_theory.jpg</a><br />' + 'Change: <input type="file" name="test" /></p>' % { + 'STORAGE_URL': default_storage.url(''), + }, + ) + def test_readonly_fields(self): """ File widgets should render as a link when they're marked "read only." |
