How do I unit test Django Views?

前端 未结 3 1741
太阳男子
太阳男子 2021-02-04 13:14

I want to begin integrating unit tests into my Django projects and I\'ve discovered unit testing a view to be tricky because of the way Django implements views with functions. <

3条回答
  •  星月不相逢
    2021-02-04 13:49

    django.test.client should have everything you need for basic unit testing of the view. I also really like twill and selenium for testing the full stack.

提交回复
热议问题