Should I Add Integration Or Unit Tests To Django Views
I am currently exploring adding unit tests to my Django REST Framework project. I totally understand adding unit tests for other components of the app like models. However, I'm stuck at testing views. I understand using Client is for adding integration testing while using APIRequestFactory is for adding unit tests. I'm curious whether I should add unit tests or integration tests to my views, and in which situations would either of them be useful.

I am currently exploring adding unit tests to my Django REST Framework project. I totally understand adding unit tests for other components of the app like models. However, I'm stuck at testing views. I understand using Client
is for adding integration testing while using APIRequestFactory
is for adding unit tests.
I'm curious whether I should add unit tests or integration tests to my views, and in which situations would either of them be useful.