Testing
Table of Contents
We have been covering testing your code as we go along. This page will just provide some relevant links.
Types of testing
We have only focused on unit tests, which isolate a small part of the code (e.g., a single function) and test that it is working as expected. The relationship between unit tests and other types of tests (integration and functional) is described nicely here.
Unit testing frameworks
Other links
- mock - a library that helps you perform isolated unit tests
- pythontesting.net - good introductions to main testing frameworks
- nose - test discovery