gpt4 book ai didi

python - setupclass 中的 django_db 标记问题

转载 作者:太空宇宙 更新时间:2023-11-04 06:06:10 25 4
gpt4 key购买 nike

早上好,我正在使用从 django.test.TestCase 继承的测试,我在使用 setupclass 方法时遇到问题,因为访问数据库并引发此错误“失败:不允许访问数据库,使用“django_db”标记来启用”,但是我使用的是 django_db 标记。这是代码:

from django.test import TestCase

@pytest.mark.django_db
class ViewAllBeneficiariesTest(TestCase):
''' Tests for Beneficiary '''

@classmethod
def setUpClass(cls):
cls.u = model_mommy_create_user_permission_all()

def test_clients_view_all_beneficiaries_get_ok(self):
#Arrange:
self.client.login(username=self.u.username, password="admin")
#Act:
res = self.client.get('/clients/beneficiaries/all/')

#Assert:
self.assertEqual(res.status_code, 200)
self.assertTemplateUsed(res, 'clients/search_beneficiaries.html')

def test_clients_view_all_beneficiaries_404(self):
#Arrange:
self.client.login(username=self.u.username, password="admin")
#Act:
res = self.client.get('/clients/beneficiaries/all/')

#Assert:

self.assertEqual(res.status_code, 404)

def test_clients_view_all_beneficiaries_fail(self):
#Arrange:
#Act:
res = self.client.get('/clients/beneficiaries/all/')

#Assert:

self.assertEqual(res.status_code, 302)
self.assertRedirects(res, '/accounts/login/')

最佳答案

这已在 pytest-django 的 master 分支中修复。

你可以阅读它here

我能够通过发出以下命令使用 pip 安装它 -

pip install https://github.com/pytest-dev/pytest-django/zipball/master

关于python - setupclass 中的 django_db 标记问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21931848/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com