Posts tagged testdrive
Setting Up Fake Django Application for Testing with Pytest
- 30 September 2023
Sometimes we need to test our code in a context of a Django application. Usually this code implements generic components, e.g. custom Django fields. We could always test our components in the context of our Django application, but this breaks the requirement for test isolation. To overcome this problem we could create a Django application which is intended for testing the specific components.