ビューをテストする単体テストがあるとします。そのビューには、何らかの処理を行うためのフォームが必要です。私の単体テストは次のようになります。
class ViewTests(TestCase):
def setUp(self):
self.factory = RequestFactory()
def test_login_view_post(self):
# require form object to pass it in post function
response = self.client.post(reverse('login'))
self.assertContains(response, "Your username and password didn't match", status_code=200)
ポスト関数でフォームオブジェクトを渡すにはどうすればよいか教えてもらえますか?
ありがとう。