unittest.TestCaseを使用して、djangoアプリのテストケースを作成しています(これは、基本的にPythonのunittest.TestCaseと同じです)。テストメソッドが失敗するたびに、以下の形式で説明が表示されます。失敗したテストメソッドの出力にカスタム/デバッグメッセージを追加する方法はありますか?
======================================================================
FAIL: test_bad_votes (polls.tests.views.PollsViewsTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/colinh/Development/tutorials/guide-to-testing-in-django/polls/tests/views.py", line 66, in test_bad_votes
self.assertEqual(resp.context['form']['choice'].errors, [u'This field is required.'])
AssertionError: [] != [u'This field is required.']