diff --git a/lacommunaute/forum_conversation/tests/tests_views.py b/lacommunaute/forum_conversation/tests/tests_views.py index aff20a1c5..10af62ddd 100644 --- a/lacommunaute/forum_conversation/tests/tests_views.py +++ b/lacommunaute/forum_conversation/tests/tests_views.py @@ -956,6 +956,18 @@ def test_clickable_tags(self): ), ) + TopicFactory.create_batch(10, with_post=True, forum=self.forum) + response = self.client.get(self.url + "?page=2") + self.assertContains( + response, + ( + f'' + '{ tag.name }' + ), + status_code=200, + ) + class TestPosterTemplate: def test_topic_in_topics_view(self, client, db, snapshot):