Chapter 11. Testing Object-oriented Programs
Most skilled Python programmers agree that testing is one of the most important aspects of software development in Python. Even though this chapter is placed near the end of the book, it is not an afterthought; everything we have studied so far will help us when writing tests. We'll be studying:
The importance of unit testing and test-driven development
The standard
unittest
moduleThe
py.test
automated testing suiteCode coverage