Testing and Debugging

Unit testing with unittest, reading tracebacks, pdb, and writing code that stays readable.

3 notes

Notes

Python

Testing with unittest

A test is a small program that checks another program. unittest ships with Python, finds your tests automatically and tells you exactly what broke.

Read more