From 2ce3e6978eea6afbbe96cc771c108dbad589348e Mon Sep 17 00:00:00 2001 From: Basyrov Rustam Date: Thu, 5 Jun 2025 22:53:39 +0300 Subject: [PATCH] add fake test for educational --- polls/tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/polls/tests.py b/polls/tests.py index 01460c9..0cf692e 100644 --- a/polls/tests.py +++ b/polls/tests.py @@ -123,3 +123,6 @@ class QuestionDetailViewTests(TestCase): url = reverse("polls:detail", args=(past_question.id,)) response = self.client.get(url) self.assertContains(response, past_question.question_text) + def test_fake_test(self): + self.assertEqual(0, 1) +