我正在django中测试我的代码,并且有一种情况我想测试它是否不相等。我该怎么办?
我正在使用django的文档: https://docs.djangoproject.com/fr/2.2/topics/testing/tools/
react中的另一个例子是“ .not”表示不相等。
我尝试使用'.not'
class SimpleTest(TestCase):
def test_details(self):
response = self.client.get('/customer/details/')
self.assertEqual(response.status_code, 200).not()
我希望有一个条件可以测试我的变量和状态代码之间的不一致性。
感谢您的帮助。
答案 0 :(得分:0)
@DanielRoseman 的解决方案正在奏效。 使用 assertNotEqual 解决了问题
文档:https://docs.python.org/3/library/unittest.html#unittest.TestCase.assertNotEqual