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
し、同じフォルダーに入れます。その後、動作します。
ありがとう。