What is the typical flow inside a Django unit test class when testing model behaviour (e.g. create, update, delete)?
Setup → Execute → Assert → Cleanup
Define URLs → Migrate → Run tests → Print response
Import packages → Write models → Run server → Test manually
Create views → Run browser tests → Export results
This question is part of this quiz :
Python | Django | Testing