我为Django写了一个小测试。它总是返回true,这是不对的。代码附在下面。我想不通为什么?谢谢你的帮助。
from django.tests import TestCase
from myapp.models import Content
class SimpleTest(TestCase):
def test_add_user(self):
cnt = Content('en', 'hello world!')
cnt.save()
self.assertEqual(cnt.text, 'hello world again!')
我通过在myapp /下创建一个tests /文件夹来实现它。然后我将test.py移动到myapp / tests /,我还将__init__.py
放到同一个文件夹中。然后就行了。
感谢。