Тестирование просмотров Ошибка, где ошибка, пожалуйста?

class Edit_RecipeViews(TestCase): """Unit Test Edit Recipe Page View""" def test_edit_recipe_page(self): response = self.client.get(f'/edit_recipe/{post.slug}') self.assertEqual(response.status_code, 200) self.assertTemplateUsed(response, 'edit_recipe.html')

Вернуться на верх