diff options
| author | jedidiah <jedidahfavour@gmail.com> | 2023-11-08 12:08:50 +0300 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-11-14 05:34:56 +0100 |
| commit | bdf30b952c66701075bb7cbbbd3467d3e908fe62 (patch) | |
| tree | 89f59a29752720c82082aa41507c3c8553d709d3 /tests/admin_docs/test_views.py | |
| parent | ad41f1c53aa9f2c938df32e4386d8a80138923fc (diff) | |
Fixed #34919 -- Added scope attribute to admindocs model templates.
Diffstat (limited to 'tests/admin_docs/test_views.py')
| -rw-r--r-- | tests/admin_docs/test_views.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/admin_docs/test_views.py b/tests/admin_docs/test_views.py index 7969f6cd42..bf469181b3 100644 --- a/tests/admin_docs/test_views.py +++ b/tests/admin_docs/test_views.py @@ -240,6 +240,20 @@ class TestModelDetailView(TestDataMixin, AdminDocsTestCase): reverse("django-admindocs-models-detail", args=["admin_docs", "Person"]) ) + def test_table_headers(self): + tests = [ + ("Method", 1), + ("Arguments", 1), + ("Description", 2), + ("Field", 1), + ("Type", 1), + ("Method", 1), + ] + for table_header, count in tests: + self.assertContains( + self.response, f'<th scope="col">{table_header}</th>', count=count + ) + def test_method_excludes(self): """ Methods that begin with strings defined in |
