मैं यह सत्यापित करने के लिए एक 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.