Unit Testing
From AstroBaki
Jump to navigationJump to searchThe basic idea of unit testing is to verify that a piece of code works the way it is supposed to work. That is, have the code try to solve the a problem with a known answer, and if the code does not give the right answer, it does not work. There is a module for doing this in python called unittest (or, alternatively, PyUnit).
- Introductory video explaining how to use unittest, presented at PyCon
- Tutorial by the developer of unittest