diff options
| author | Tim Graham <timograham@gmail.com> | 2015-02-12 13:40:23 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-02-12 14:20:17 -0500 |
| commit | 03f4e2d90997aec4c8f57c5c9b7925d70194327e (patch) | |
| tree | 8c3ab744b138a86e9a302c8593f83b55c412b431 /tests | |
| parent | 6476fa73d3ce03eac1a5a05e839257316da992db (diff) | |
[1.8.x] Fixed #24333 -- Fixed admin history view crash with non-integer slug.
Backport of d64baaef3b95abe9ae5d07317c9bf4df02cb8592 from master
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/admin_views/tests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py index 508a6c7c59..2e016515cf 100644 --- a/tests/admin_views/tests.py +++ b/tests/admin_views/tests.py @@ -1471,6 +1471,11 @@ class AdminViewPermissionsTest(TestCase): self.client.get(reverse('admin:logout')) + def test_history_view_bad_url(self): + self.client.post(reverse('admin:login'), self.changeuser_login) + response = self.client.get(reverse('admin:admin_views_article_history', args=('foo',))) + self.assertEqual(response.status_code, 404) + def test_conditionally_show_add_section_link(self): """ The foreign key widget should only show the "add related" button if the |
