Summary
The overview of Django testing is now complete. In this chapter, we:
Looked in detail at the sample
tests.py
file generated when a new Django application is createdLearned how to run the provided sample tests
Experimented with introducing deliberate mistakes into the tests in order to see and understand what information is provided when tests fail or encounter errors
Finally, we examined all of the command line options that may be used with
manage.py test
We will continue to build on this knowledge in the next chapter, as we focus on doctests in depth.