UnitTestを作成して、オブジェクトが削除されたことを確認しようとしています。
from django.utils import unittest
def test_z_Kallie_can_delete_discussion_response(self):
...snip...
self._driver.get("http://localhost:8000/questions/3/want-a-discussion")
self.assertRaises(Answer.DoesNotExist, Answer.objects.get(body__exact = '<p>User can reply to discussion.</p>'))
エラーが発生し続けます:
DoesNotExist: Answer matching query does not exist.
以下の私の回答とは無関係ですが、そのget()呼び出しは問題の回答を削除していますか?もしそうなら、それは本当にGETではなくDELETEであるべきです。
—
Steve Jalim